Under what circumstances do the following two methods of binding a click event to a paragraph not behave the same:
$("p").live("click", function() { alert("p clicked") })
$("p").click(function(){ alert("p clicked") });
Under what circumstances do the following two methods of binding a click event to a paragraph not behave the same:
$("p").live("click", function() { alert("p clicked") })
$("p").click(function(){ alert("p clicked") });
How would you write a selector that selects the following
Write a jQuery plugin to display a list of images in a Lightbox.