how can i start ann application with a javascript? because on a lot of sites you see a link with "join the server" i have looked into the source of such a site, but i just cant get the hang of that.
can someone explain me how to make such??
Comments
kinkserious memberVPS - Virtual Prince of the Server
i think what you mean
<script type="text/javascript">
function afunction()
{
alert("you are now being transfered to the ultimate site");
window.location = "http://www.devdreams.com";
}
</script>
</HEAD>
<BODY>
<!-- Insert HTML here -->
<input type="button" onClick="afunction()">
Comments
<script type="text/javascript">
function afunction()
{
alert("you are now being transfered to the ultimate site");
window.location = "http://www.devdreams.com";
}
</script>
</HEAD>
<BODY>
<!-- Insert HTML here -->
<input type="button" onClick="afunction()">
The Royal Ram