How can I acceess objects(divs) that were dynamically generated. I mean DIVS that were not present in output when $(document).ready(function() started.
$(document).ready(function()
If I
.click() functions that aren't working on spans or divs that are added later, you'll need to use .live()
$("#clicker2").live("click", function(){ # do stuff to spans currently existing # and those that will exist in the future });