Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.0.1.js"></script>
<meta charset=utf-8 />
</head>
<body>
  <button id='hideSlow'>Hide 'Slow'</button>
  <button id='showSlow'>Show 'Slow'</button>
  <hr>
  <p id="hello">HELLO!</p>
</body>
</html>
  
 
p#hello { padding: 20px; color: #FF7400; font-weight: bold; font-size: 22px; background-color: #36393D; border: 2px solid #FF7400; }
 
$(function() {
  $('button#hideSlow').click(function() { $('p#hello').hide('slow'); });
  $('button#showSlow').click(function() { $('p#hello').show('slow'); });
});
Output

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

Dismiss x
public
Bin info
estebanpro
0viewers