Quotes help make search much faster. Example: "Practice Makes Perfect"
Thursday, June 6, 2013
Codeschool Sample Solution Traversing II
$(document).ready(function(){
$('button').on('click', function(){
var message = $("<span>Call 1-555-jquery-air to book this tour</span>");
$(this).closest("li").append(message);
$(this).remove();
});
});
No comments:
Post a Comment