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

Thursday, November 8, 2012

Codecademy: Sample Solution to "Remove It!"



//Sample Solution to script.js
$('document').ready(function() {
function addListItemTo(listId,item) {
    $('#'+listId).append($('<li></li>').html(item));
}

var jQuery = $;
var jQueryObject = $();

for (var key in jQuery)
    addListItemTo("jQueryAttributes",key);

for (var key2 in jQueryObject)
    addListItemTo('jQueryObjectAttributes',key2);

//YOUR CODE HERE remove those li's!
$("#right ul li:odd").remove();
});

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts