I had a similiar bug for Firefox and disabling drag-and-drop by returning false for mousedown/move/up events corrected it. 'Return false' and 'preventDefault' don't not seem to be affecting IE9 at all. Am I just passing the event object incorrectly? or is disabling drag-and-drop just not the solution for IE9?
$("#container").mousedown(function(event) {
event.preventDefault();
});

New Topic/Question
Reply



MultiQuote




|