Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html> <html> <head> <meta charset=utf-8 /> <title>SlideToggle function Demo</title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $('#btnToggle').click(function(){ $('#dvText').slideToggle(10); return false; }); }); </script> </head> <body> <div id="btnToggle">Toggle Text </div> <div id="dvText" style="display:none;"> jQuery By Example rocks!!!!<br /> jQuery By Example rocks!!!!<br /> jQuery By Example rocks!!!!<br /> jQuery By Example rocks!!!!<br /> jQuery By Example rocks!!!!<br /> </div> </body> </html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers