Guest_imported
New member
- Jan 1, 1970
- 0
I have several submit buttons within my page.
<input type=button value=Access onClick=access()>
e.g.
function access(){
document.forms[0].action = './main.html';
document.forms[0].submit();
}
Is it possible to submit a value (access) from this function?? so that it can be read by the next page.
<input type=button value=Access onClick=access()>
e.g.
function access(){
document.forms[0].action = './main.html';
document.forms[0].submit();
}
Is it possible to submit a value (access) from this function?? so that it can be read by the next page.