I've an dynamic web page (lots of user interaction), originally programmed with plain JavaScript. Now I've learned about Jquery, and am gradually replacing complicated JavaScript by some simple Jquery statements; great stuff!
But now I'm stuck. I've replaced <body onmouseup="mouse_up()"> with $('body').bind("mouseup",mouse_up) in the document ready function. This works fine in Firefox, but not at all in Internet Explorer. I also tried $('body').bind("mouseup",function() {mouse_up()}) and attaching it to different elements on the page. Every time it works in FF, but not in IE. Could anybody give me a pointer where to look for a solution? Thanks in advance, Ad