Hi,
I am toggling a div based on another div click. I also need a image within the main div to toggle between two images. How do i achieve this. Here is the existing code.
<script type="text/javascript">
$(document).ready(function () {
load();
$('.contentHead').on("click", function () {
$(this).next('.contentbdy').slideToggle();
});
...
Go to the complete details ...