Alakazam hide and seek

January 11, 2010

Show

0

Hello JQuery

January 10, 2010

// This code syntax requires the JQuery import above.
$(document).ready(function() {
$(“a[name=hello]“).click(function() {
alert(“Hello world!”);
});
});

Click here for Hello!

0

All your base

January 9, 2010

var x = 0;
var message = “How are you gentlemen !!! \n All your base are belong to us. \n You are on the way to destruction. \n You have no chance to survive make your time. \n Ha Ha Ha Ha. \n”;
function how_are_you()
{
current_message = document.main_screen.talking.value;
document.main_screen.talking.value = current_message+message.charAt(x);
x = x+1;
setTimeout(“how_are_you()”,300);
}

Click in this box to enjoy [...]

0

Updating a text box on click.

January 9, 2010

function how_are_you2()
{
document.main_screen2.talking2.value = “How are you gentlemen?”;
}

Click in this box to enjoy your message.

0