I have many hyper-links in a table tr
so i want it to open whenever I refresh/load this page.
How do I do this?
I checked in <a href
there is no OnLoad
option for calling any javascript function.
please help me..
I have table like:
<table>
<tr class="oddrow">
<td>Google</td>
<td>
<a style="color: blue;" href="www.google.com"> my website link 1</a>
</td>
</tr>
<tr class="oddrow">
<td>Stackoverflow</td>
<td>
<a style="color: blue;" href="www.stackoverflow.com"> my website link 2</a>
</td>
</tr>
<tr class="oddrow">
<td>Yahoo</td>
<td>
<a style="color: blue;" href="www.yahoo.com"> my website link 2</a>
</td>
</tr>
</table>