Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, November 8, 2012

Codecademy: Sample Solution to "Multiple Handlers"



//Sample Solution for script.js
$('document').ready(function(){
//your code in here
$("#lastClick").on({
mousedown: function(e){
$("#lastClick").html("down");
},
mouseup: function(e){
$("#lastClick").html("up");
}
});
});

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts