• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

??"Save Target As..." greyed out in right-click menu??

joshdoe

Senior member
I'm not sure why this is happening. Everything I right-click has "Save Target As..." greyed out and unselectable. I imaging there's some small, simple little fix, but I can't seem to find it. Thanks
 
if it on a website, the site designer could have coded it so that people won't be able to do that cuz it would allow ppl to steal their artistic goods.
 
Haha! Thanks Jay. A long time ago I think I activated the Content Control, but allowed full access. Just disabled it, now it works fine! I can't believe it was that simple. Thanks!
 


<< if it on a website, the site designer could have coded it so that people won't be able to do that cuz it would allow ppl to steal their artistic goods. >>



How does one do that?
 
From http://javascript.internet.com:

<!-- TWO STEPS TO INSTALL NO RIGHT CLICK:

1. Copy the coding into the HEAD of your HTML document
2. Add the last code into the BODY of your HTML document -->

<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->

<HEAD>

<SCRIPT LANGUAGE=&quot;JavaScript1.1&quot;>
<!-- Original: Martin Webb (martin@irt.org) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function right(e) {
if (navigator.appName == 'Netscape' &amp;&amp;
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &amp;&amp;
(event.button == 2 || event.button == 3)) {
alert(&quot;Sorry, you do not have permission to right click.&quot😉;
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
// End -->
</script>
</HEAD>

<!-- STEP TWO: Copy this code into the BODY of your HTML document -->

<BODY>

<center>[ Try right-clicking the image and then the text link below ]
<p>
<img src=&quot;http://javascript.internet.com/img/tjsbutton.gif&quot;>
<p>
<a href=&quot;http://javascript.internet.com&quot;>Text Link</a>

<p><center>
<font face=&quot;arial, helvetica&quot; size=&quot;-2&quot;>Free JavaScripts provided<br>
by <a href=&quot;http://javascriptsource.com&quot;>The JavaScript Source</a></font>
</center><p>

<!-- Script Size: 1.57 KB -->
 
Back
Top