Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" type="text/css" href="http://cdn.dynamiclightdesign.com/js/jquery/countdown/jquery.countdown.css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <div id="timers"></div>
  <script type="text/javascript" src="http://cdn.strategiqcommerce.com/ajax/libs/jquery-countdown/1.6.1/jquery.countdown.min.js"></script>
</body>
</html>
 
$(function() {
  var now = new Date(),
      timeoutDate = new Date(now.getTime() + 10 * 60 * 1000);
  $("#timers").countdown({
    until: timeoutDate,
    layout: '<span class="digits">{mnn}:{snn}</span>',
    onExpiry: function() { alert('timeout');}
  });
    
});
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers