I am unable to get the click event to work for elements created thusly.
http://jsfiddle.net/iambriansreed/PEZXa/
jQuery
$('<a href="#">a</a>', {
click: function(){
alert('a clicked');
}
}).appendTo("div");
$('<span>span</span>', {
click: function(){
alert('span clicked');
}
}).appendTo("div");
Please don't show me the 50 different ways you can add an onclick event to an element I want to know why this particular method does or does not work.
From the docs: http://api.jquery.com/jQuery/#jQuery2
jQuery(html, props)– Alnitak Aug 29 '12 at 21:58$.attrFn– Alnitak Aug 29 '12 at 22:00