I want to call a function after an element has been created. Is there a way to do this?
Example:
$(\"#myElement\").ready(function() { // call the
check out .live() its best after the element created,,
$('.clickme').live('click', function() { // Live handler called. });
And then later add a new element:
$('body').append('Another target');