Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
</head>
<body>
<div class="old">
  <div id="showfriend">
    <a href="#11">Our Furry Friends Need Your Help
    <img src="http://ww2.sinaimg.cn/large/62037b5agw1eu8095pb1gj209s064glk.jpg" alt="狗狗"></a>
  </div>  
  <hr>
</div>
  
  
<div id="clickMe">Show Me the Furry Friend of the Day</div>
<div id="picframe">
  <img src="http://ww2.sinaimg.cn/large/62037b5agw1eu8095pb1gj209s064glk.jpg" alt="狗狗">
</div>
  
</body>
</html>
 
$(document).ready(function(){
  $("#clickMe").click(function(){
    $("#picframe img").fadeIn(1000);
    $("#picframe").slideToggle("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