how do i get my buttons to go underneath each other rather than them being in a row?
how do i get my buttons to go underneath each other rather than them being in a row?
too little data to provide an answer. Please give more details. Please provide your code.
Ryan
Sevierville, TN
sorry
these buttons are in a row but i want them placed underneath each other instead.Code:<td><input id="A" type="button" value="A" onclick="clicked(this);" /></td> <td><input id="B" type="button" value="B" onclick="clicked(this);" /></td>
Well that is html and not javascript
This well put them underneath each other.
Note the added<tr>.Code:<tr><td><input id="A" type="button" value="A" onclick="clicked(this);" /></td></tr> <tr><td><input id="B" type="button" value="B" onclick="clicked(this);" /></td></tr>
<TABLE> (Opening Table)
<TR> (New Row) <TD> (New Column)
</TR> (Close Row) </TD> (Close Column)
</TABLE> (Closes table)
Ryan
Sevierville, TN
thanks
Bookmarks