A
Amir
I have a common Jscript function in my "common.js" file
It is:
function submitForm(frm,action){
frm.action=action;
frm.submit();
return(false)
}
To submit my form fields to any other page I
Use this function like this
<A href="" onclick="return submitForm(myFormName,'\mydir\mypage.asp')">
sample link</A>
This function works completely in IE 5+ but it doesn't work in
FireFox
What is the problem?
http://www.webfreeguide.com
It is:
function submitForm(frm,action){
frm.action=action;
frm.submit();
return(false)
}
To submit my form fields to any other page I
Use this function like this
<A href="" onclick="return submitForm(myFormName,'\mydir\mypage.asp')">
sample link</A>
This function works completely in IE 5+ but it doesn't work in
FireFox
What is the problem?
http://www.webfreeguide.com