i can disable "file">"save" menu with javascript but i want to disable "save as" menu. i hope someone can show me how to do this.
Thx for everyone helping me...
Here is the JS Code to disable "file">"save" menu;
<script type="text/javascript">
if ('undefined' != typeof document.onselectstart)
{
document.onselectstart = function()
{
return false;
}
}
else
{
document.onmousedown = function()
{
return false;
}
document.onmouseup = function()
{
return true;
}
}
</script>


