Is there a way to toggle the src attribute of an image between two values when an anchor is clicked?
Like this:
$('a#some-anchor').click(function() {
// code here that toggles between two image src's e.g. "images/some-image1.jpg" and "images/some-image2.jpg"
});