$(document).bind("dragstart", function() {
return false;
});
////////////////////
$(document).bind("dragstart", function(e) {
if (e.target.nodeName.toUpperCase() == "IMG") {
return false;
}
});
//////////////////
No comments:
Post a Comment