I have been working on my website a lot, and I have came to a stop, seeing as I am trying to add a javascript script result in a table which looks something like this:
<tr>
<td align='left' valign='top' width='290' height='28'>The information provided resulted to...<div id='show();return false;'></div></td>
</tr>
<tr>
<td align='left' valign='top' width='290' height='28'>This is your result...</td>
</tr>
So this is an example of what I am trying to do, I want the result from the javascript to be posted in the table, and it does work, but...I also want the information under the result to be pushed down so the information under it wont be covered by the result from the javascript.
So how can I make the text under it be pushed down when the javascript result is shown?
<tr>
<td align='left' valign='top' width='290' height='28'>The information provided resulted to...<div id='show();return false;'></div></td>
</tr>
<tr>
<td align='left' valign='top' width='290' height='28'>This is your result...</td>
</tr>
So this is an example of what I am trying to do, I want the result from the javascript to be posted in the table, and it does work, but...I also want the information under the result to be pushed down so the information under it wont be covered by the result from the javascript.
So how can I make the text under it be pushed down when the javascript result is shown?
Comment