I just have an HTML page with an image & Content.
<table>
<tr>
<td height="240" valign="top" colspan="3">
<img id="image" class="newsimage" src="D:/Search/images/search.jpg" alt="search" height="120" width="50%"/>
<div class="imageContect">image Content</div>
</td>
</tr>
</table>
Below it I have 2 links of previous & next.
<a href="#" onclick="">Previous</a>
<a href="#" onclick="">Next</a>
I want to change image of "image" id & content of "imageContent" id using AJAX (javaScript).
What are the Steps I should follow ?