Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<script src="//code.jquery.com/jquery-1.9.1.min.js"></script>
<h1>Click image to Zoom In and Zoom Out</h1>
<img src="https://lh5.googleusercontent.com/-1-A_8hY5QGI/VDy1RT4svVI/AAAAAAAAHqI/KQM9izDD5YU/w736-h709-no/Favourite%2Bsession%2Bday%2B1.png" alt="Smile" id="imgSmile" />
 
$(document).ready(function(){
   $('#imgSmile').width(100);
   
  $('#imgSmile').click( function (){
 
   $("#imgSmile").elevateZoom(function()
     {$(this).animate({width: "10000px"}, 'slow');}, 
     function()
     {$(this).animate({width: "500px"}, 'slow');
   });
    
  });
});
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers