Quotes help make search much faster. Example: "Practice Makes Perfect"
Tuesday, December 18, 2012
Codecademy Sample Solution: Codeyear Make it Respond
// sample solution to script.js
$(document).ready(function() {
$("ul.tabs li").click(function(){
var pageID = $(this).attr("id");
alert("tab with ID " + pageID + " was clicked");
});
});
No comments:
Post a Comment