changeing Image Src on Click with Jquery
I am trying to swap images in an img tag once it's clicked and it doesn't seem to be working.
this is the code that I have:
-
$('#smallImg1').click(function(){
$('#smallImg1').attr('src', '../../App_Themes/Default/Images/belkinLarge4.png');
});
Any help would be appreciated.