Quotes help make search much faster. Example: "Practice Makes Perfect"
Friday, November 9, 2012
Codecademy: Sample Solution to "hover"
//Sample solution to script.js
$(document).ready(function(){ $("div").hover( function () { //entry code here $(this).addClass("hover"); }, function () { //exit code here $(this).removeClass("hover"); } );
});
No comments:
Post a Comment