I have a document content displayed on IFrame in MVC web application. The content should not be copied and printed . I tried to disable right click using two functions style
This worked for me fine:
window.frames["your_iframe_id"].contentDocument.oncontextmenu = function(){ return false; };