i'm finishing writing a plugin, which allow to zoom images, and then move it, to see other parts of image. But i have a problem.
as we know, when we try to move image, (ie when we mousedown on it and move the cursor), the browser don't allow it.
i've written
$("img").mousedown(function(e)
{
e.preventDefault();
});
and it works in Mozilla, but doesn't for example in ie.
any ideas?
Thanks much