Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Submit button inside <a></a> in Netscape Navigator

Status
Not open for further replies.

whizza

Programmer
Feb 4, 2002
16
GB
The following submit button works fine in Internet Explorer
but not in Netscape Navigator. Anyone know of a way to make
this work with NN ?

Regards
Tony Hickinbottom


<html>
<head>
<script language=&quot;javascript&quot;>
<!--
function helpwin(hwurl,hwtitle,hwfeatures) {
window.open(hwurl,'helpwindow','toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=400,height=400,left=250,top=50')
}
//-->
</SCRIPT>
</head>

<body>
<form method=post action=&quot;<input name=&quot;sofd&quot; value=&quot;ok&quot; type=&quot;hidden&quot;>

<a href title=&quot;Right click for help&quot; oncontextmenu=&quot;helpwin('/cgi-bin/mysdev1/myshop.ex_?ico_hlp=HELPS/SUBMITS.HTM','',''); return false&quot;>
<input type=&quot;submit&quot; value=&quot;SUBMIT BUTTON WITH RIGHT CLICK POPUP HELP WINDOW&quot; name=&quot;SUB_SUBMITS&quot;>
</a>

<input name=&quot;eofd&quot; value=&quot;ok&quot; type=&quot;hidden&quot;>
</form>
</body>
</html>
 
whizza,

I believe what you are doing is really not very usable. Would you actually doing things differently?

<a href=&quot;/cgi-bin/mysdev1/myshop.ex_?ico_hlp=HELPS/SUBMITS.HTM&quot; onclick=&quot;helpwin('/cgi-bin/mysdev1/myshop.ex_?ico_hlp=HELPS/SUBMITS.HTM','','') ;return false&quot;>help</a>

<input type=&quot;submit&quot; value=&quot;SUBMIT&quot; name=&quot;SUB_SUBMITS&quot;>

Gary Haran
********************************
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top