Before and After

Discussion in 'JavaScript' started by m u r, Mar 11, 2010.

  1. #1
    I have two images, a before and after. I was hoping to rollover the "after shot" where a little button pops up in the center where you can click on "after" which swaps the "after" image with the "before" image. Any idea how to do this?
     
    m u r, Mar 11, 2010 IP
  2. !Unreal

    !Unreal Well-Known Member

    Messages:
    1,671
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    165
    #2
    
    $('#button').click(function(){
    	$('#img').src('after.png');
    });
    
    PHP:
     
    !Unreal, Mar 12, 2010 IP