I have searched for two days...my problem is that I do not know enough about javascript to know when I have the answer..
I can capture the left click with this code...
<SCRIPT Language="Javascript">
function post_to_link(link_loc){
document.form1.action =
link_loc;
document.form1.submit();
}
</SCRIPT>
I have been trying to capture the right click...I can capture it with onmouseup event but then I loose the information that would make the user be able to "save as"
I need really beginner level instructions from anyone who wants to take the time, and I thank you.
JCroft
--only those that do not try, fail--
I can capture the left click with this code...
<SCRIPT Language="Javascript">
function post_to_link(link_loc){
document.form1.action =
link_loc;
document.form1.submit();
}
</SCRIPT>
I have been trying to capture the right click...I can capture it with onmouseup event but then I loose the information that would make the user be able to "save as"
I need really beginner level instructions from anyone who wants to take the time, and I thank you.
JCroft
--only those that do not try, fail--