I made a simple div:
<div id="foo"></div>
and I added a click method to it in jquery
$("#foo").click(wow);
function wow(){
alert("Message");
}
This works fine in Firefox/others, but doesn't work in IE6/IE7? Why? Any specific resources on this?
Edit: The Div already exists in the dom, and the jQuery is run on ready, and it still doesn't work.