Th 3/14 AIM: How do we add & remove elements from the DOM?
HW: nothing new!
List: Debugging
Pair Programming Mode
$(function(){� � $('button').click(function(){� var userInput = $('input').val();� $('ul').append("<li>"+userInput+"</li>");� $('input').val("").focus();� });�� $('li').dblclick(function(){� $(this).remove();� });� �});
Summary
Here is the solution to the List.
HW#10 (due F 3/15, 8:00am): jQuery Summary