My HTML.doc uses:
<INPUT TYPE="button" VALUE="EDIT" /> and a JS doc to open a new window.
The window is actually opened in the JS with where a switch statement uses the value of the button to invoke
window.open("Ed itPage.html","E dit",
"toolbar=yes,re sizable=yes,sta tus=yes,width=5 00,height=500") ;
How do I skip the JS doc and open the window from the HTML without using a picture and a button. I guess what I'm wondering is there a way I can open this window with something like:
<INPUT TYPE="button" VALUE="EDIT" SCR="EditPage.h tml" />
If anyone can point me to some code I would apreciate it.
Thanks
<INPUT TYPE="button" VALUE="EDIT" /> and a JS doc to open a new window.
The window is actually opened in the JS with where a switch statement uses the value of the button to invoke
window.open("Ed itPage.html","E dit",
"toolbar=yes,re sizable=yes,sta tus=yes,width=5 00,height=500") ;
How do I skip the JS doc and open the window from the HTML without using a picture and a button. I guess what I'm wondering is there a way I can open this window with something like:
<INPUT TYPE="button" VALUE="EDIT" SCR="EditPage.h tml" />
If anyone can point me to some code I would apreciate it.
Thanks
Comment