| View previous topic :: View next topic |
| Author |
Message |
guyzdancin1
Joined: 04 Apr 2008 Posts: 2
|
Posted: Fri Apr 04, 2008 2:08 pm Post subject: HREF tags within a Form tag LEGAL ?? |
|
|
I am wondering if you can put href tags within form tags below the <input type="submit"> tag. Actual code snippet is below
*************CODE**********************
<div id="cwScreen2">
<FORM ACTION="${appProperties.appURIBase}/webGame/CWValidator" NAME="cwScreen" >
<SCRIPT TYPE="text/javascript">
var draws = new Array("numDraws", "drawDate");
</SCRIPT>
<INPUT TYPE="SUBMIT" NAME="cwGame" VALUE="Add Bet" ONCLICK="return validateCashWin(draws)" >
<table>
<tr>
<td><a href="/webGame/games/cashWinfall/CashWinfallChangeBet.jsp">Change Bet</a></td>
<td ><a href="/webGame/games/chooseGame.jsp">Switch To Another Game </a></td>
<td ><a href="${appProperties.appURIBase}/webGame/SendCashWin" >SendCWNums</a></td> </tr>
</table>
</FORM>
</div>
******************END CODE***********************
Thanks in advance |
|
| Back to top |
|
 |
|
|
webmaster Site Admin

Joined: 17 Aug 2004 Posts: 3590 Location: Sweden
|
Posted: Fri Apr 04, 2008 3:22 pm Post subject: Re: HREF tags within a Form tag LEGAL ?? |
|
|
Hehe, well.. that was a fun way to put it.. I assume that it's legal in most countries, I live in Sweden, can't answer for all of them though.
Hehe, no but seriously. There's nothing wrong with that. If I should complain about something, it would be to not write in capitals, so <FORM ACTION should be <form action.
Welcome to the forums by the way!  |
|
| Back to top |
|
 |
guyzdancin1
Joined: 04 Apr 2008 Posts: 2
|
Posted: Fri Apr 04, 2008 3:37 pm Post subject: Re: HREF tags within a Form tag LEGAL ?? |
|
|
| Thanks so much webmaster |
|
| Back to top |
|
 |
|