I had a html page which I converted to Jsp, when I changed it to jsp the images are loaded very delayed, how do I make sure that the images and the text load at the same time.Right now what is happening is the text on the page is loaded and then the images appear.
<tr><td background="bg.gif" width="100"><a href="index.jsp"><b>Home</b></a></td>
<td rowspan=5><img src="people2.jpg"></td>
</tr>
<tr>
<td background="bg.gif" width="100"><a href="home2.jsp">Window1</a></td>
</tr>
<tr><td background="bg.gif" width="100"><a href="home.jsp">window</a></td>
</tr>
<tr><td background="bg.gif" width="100"><a href="home3.jsp" >Window3</a></td>
</tr>
Thanks!
<tr><td background="bg.gif" width="100"><a href="index.jsp"><b>Home</b></a></td>
<td rowspan=5><img src="people2.jpg"></td>
</tr>
<tr>
<td background="bg.gif" width="100"><a href="home2.jsp">Window1</a></td>
</tr>
<tr><td background="bg.gif" width="100"><a href="home.jsp">window</a></td>
</tr>
<tr><td background="bg.gif" width="100"><a href="home3.jsp" >Window3</a></td>
</tr>
Thanks!