[jQuery] disable div oncontextmenu?

[jQuery] disable div oncontextmenu?


Hi guys, I wanted to know if it's possible to disable contextmenu from a
given element: span for instance. IE7 doesn't seem to like it very well?
begin: function(){
        var selectors = $("span[@id^=eip-]");
        
        $.each(selectors, function(i) {
            $(selectors[i]).oncontextmenu = function() { return false; } or
$(selectors[i]).attr("oncontextmenu", "return
false");
            return true;    
        });
    },
for some reason, it would only disable at the initial page loading. after
the first right click, it goes back to normal.
--
View this message in context: http://www.nabble.com/disable-div-oncontextmenu--tf2910415.html#a8131867
Sent from the JQuery mailing list archive at Nabble.com.
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/