Hi there,
I am appending HTML into the DOM via jquery.append - my script is as follows (please excuse the crappy code)
myDiv = $("<div class='bottomright' title="+msgID+">"+msgTitle+msgContent+
"</div>").appendTo(document.body).fadeOut(0).slideDown('fast');
shown.push(msgID);
is there a different way to address either the hover or the appending (because looking at firebug, it seems the divs get in there ok, and they show up perfectly) so that I can use the hover function?
When I say I am unable to use it, I mean it actually does nothing, I have written the following and nothing happens:
$(".bottomright").hover(function(){
alert("text")
})