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

Thursday, November 8, 2012

Codecademy: Sample Solution to "In the beginning..." under the jQuery track


//Sample Solution for script.js $('document').ready(function() { $('#changeButton').click(function() { //create a new div with id 'new-div' $newDiv = $('
'); //code to insert the element into the page. //you'll learn this next section! //(and a little at the end of this one) $newDiv.html("I'm the new div"); $('body').append($newDiv); }); });

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts