Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <title>JQM latest - issue template</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet"  href="http://code.jquery.com/mobile/git/jquery.mobile-git.css"> 
  <script src="http://code.jquery.com/jquery-1.10.1.js"></script>
  <link href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.min.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  <script src="http://code.jquery.com/mobile/git/jquery.mobile-git.js"></script> 
  <script>
    // JS
    $.mobile.slidePage = function( to, from ){
        var time = Date.now();
        from.css({
          display:"block"
        }).animate({
          left: "-100%"
        },{
          duration: "350"
        });
        to.css({
          display:"block",
          left: "100%"
        }).animate({
          left: "0"
        },{
          duration: "350",
          queue: false,
          complete: function(){
            alert( Date.now() - time );
          }
        });
    }
    $.mobile.defaultPageTransition = "none";
    $.mobile.document.on( "pagecontainerbeforehide", function( event, ui ){
      $.mobile.slidePage( $( ".ui-page").not( ".ui-page-active" ), $( ".ui-page-active" ) );
    });
  </script>
  <style>
    #edit-with-js-bin { display: none !important; }
  </style>
</head>
<body>
 
  <div data-role="page" id="page1">
  
    <div data-role="header">
      <h1>Issue template</h1>
    </div><!-- /header -->
    
    <div data-role="content" id="content">
      <button id="transition">Bye Bye</button>
      <a href="#page2">page2</a>
      <p>See the <a href="https://github.com/jquery/jquery-mobile/blob/master/CONTRIBUTING.md#issues" target="_blank">Contributing Guidelines</a> for instructions.</p>
      <p>Use the "Live preview" for testing: click on the arrow in the top right corner of the "Output" panel.</p>
      
    </div><!-- /content -->
  
  </div><!-- /page -->
   <div data-role="page" id="page2">
  
    <div data-role="header">
      <h1>Issue template</h1>
    </div><!-- /header -->
    
    <div data-role="content" id="content">
      <button id="transition">Bye Bye</button>
      <p>See the <a href="https://github.com/jquery/jquery-mobile/blob/master/CONTRIBUTING.md#issues" target="_blank">Contributing Guidelines</a> for instructions.</p>
      <p>Use the "Live preview" for testing: click on the arrow in the top right corner of the "Output" panel.</p>
      
    </div><!-- /content -->
  
  </div><!-- /page -->
</body>
</html>
Output

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

Dismiss x
public
Bin info
arschmitzpro
0viewers