html tag in javascript:
var html="<div><a class='link' href='#'>Click</a></div>;
jQuery
$(document).ready(function(){
$("#html").html(html);
$(".link").click(do something);
});
html
<html>
<div id="html"></div>
</html>`
Why does jQuery not work when I do it this way, I tried with functions and event in html tags, it works!
"– uDaY Feb 2 '12 at 19:27