PDA

View Full Version : starting app with java



indy-jones
04-05-2005, 11:41 AM
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??

kink
04-11-2005, 09:40 AM
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()">

shield
04-11-2005, 03:24 PM
I liked that function :)