I am trying to swap image when an image is clicked...here is my jquery so far and it's not working.
$(document).ready(function(){
imgFldr = '../../App_Themes/Default/Images/';
$('#smallImg1').click(function(){
$('#smallImg1').attr('src', imgFlder+'belkinSmall4.png');
});
});
And below is an example of my HTML
<div>
<img id="smallImg1" src="../../App_Themes/Default/Images/belkinSmall1.png" />
</div>
Any help would be appreciated!