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

Thursday, November 8, 2012

Codecademy: Sample Solution to "Each this time"


//Sample solution to script.js

$('document').ready(function() {

var jQuery = $;

//iterate over jQuery, adding every key
//to the list with id jQueryAttributes
var divjQueryAttributes = $('#jQueryAttributes');

$.each(jQuery,
function(index, value){
divjQueryAttributes.append('<li id=' + index +'>' + value + '</li>');
});

});

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts