Hi,
I run the below code like i have two radio buttons. one is automatic,anoth er is manual button.when i select the the automatic radio button it move to the page.php and select the manual radio button it move to the page2.php.But it is not work.plz tell that what's the problem in my code.
[HTML] <html>
<head>
<SCRIPT LANGUAGE="JavaS cript">
function showList() {
sList = window.open("pa ge.php", "update");
}
function show() {
sList = window.open("pa ge2.php", "update");
}
function remLink() {
if (window.sList && window.sList.op en && !window.sList.c losed)
window.sList.op ener = null;
}
</SCRIPT>
</head>
<body>
<form action=link method="reg_upd ated_msg.html" name="stockForm ">
<input type="radio" name="stockBox" onClick="showLi st(this.value)" checked id="id11" value=""/> Automatic registration approval via
email<br>
<input type="radio" name="stockBox" onClick="show(t his.value)"id=" id22"/> Manual registration approval by
administrator<b r>
</form>
</body>
</html>[/HTML]
I run the below code like i have two radio buttons. one is automatic,anoth er is manual button.when i select the the automatic radio button it move to the page.php and select the manual radio button it move to the page2.php.But it is not work.plz tell that what's the problem in my code.
[HTML] <html>
<head>
<SCRIPT LANGUAGE="JavaS cript">
function showList() {
sList = window.open("pa ge.php", "update");
}
function show() {
sList = window.open("pa ge2.php", "update");
}
function remLink() {
if (window.sList && window.sList.op en && !window.sList.c losed)
window.sList.op ener = null;
}
</SCRIPT>
</head>
<body>
<form action=link method="reg_upd ated_msg.html" name="stockForm ">
<input type="radio" name="stockBox" onClick="showLi st(this.value)" checked id="id11" value=""/> Automatic registration approval via
email<br>
<input type="radio" name="stockBox" onClick="show(t his.value)"id=" id22"/> Manual registration approval by
administrator<b r>
</form>
</body>
</html>[/HTML]
Comment