Thursday, November 18, 2010

Event Functions

You we can modify the page at your will. You will need jQuery event methods to react to user input and making changes at the appropriate time. A simple big example is:
$('#introduction > h2 a').click(function() {
$('#introduction').load(this.href);
return false;
});

No comments:

Post a Comment