Return to Snippet

Revision: 26451
at September 7, 2010 10:36 by rumremix


Updated Code
$(function() {
  // Handler for .ready() called.
});

//waits until all page assets loaded
$(window).load(function(){
    // Handler 
});
    

$('#target').click(function() {
  alert('Handler for .click() called.');
  return false;
});

Revision: 26450
at August 27, 2010 08:14 by rumremix


Updated Code
$(function() {
  // Handler for .ready() called.
});

//waits until all page assets loaded
$(window).load(function(){
    // Handler 
});
    

$('#target').click(function() {
  alert('Handler for .click() called.');
});

Revision: 26449
at April 28, 2010 20:04 by rumremix


Initial Code
$(function() {
  // Handler for .ready() called.
});
    


$('#target').click(function() {
  alert('Handler for .click() called.');
});

Initial URL


Initial Description


Initial Title
jquery common function syntax

Initial Tags
jquery

Initial Language
jQuery