How can I acceess objects(divs) that were dynamically generated.
I mean DIVS that were not present in output when $(document).ready(function()
started.
If I
Just put the click binding inside the first click function:
$('#click_me').click(function()
{
$('#container').append('can you click on me?');
$('#clicker2').click(function(){ alert('hurray, it works'); });
});
As you have it, the binding is being called, but there is no "div#clicker2" to bind to the second function.
Hope this helps.