Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
  article, aside, figure, footer, header, hgroup, 
  menu, nav, section { display: block; }
</style>
</head>
<body>
  <input class="productSubmitInput" name="AddToCart_Submit" type="submit" value="Add this item" onclick="AddToCart(232523,6733451,'',3,'','',false);return false;">
  
<center id="product_page_center">
<h1 class="copy117" style="">
               Peyton Manning Super Bowl XLI Autographed Pro Football        
</h1>
    </center>
  
<center id="product_page_center">
<h1 class="copy117" style="font-size: 18px;">
               Peyton Manning Super Bowl XLI Autographed Pro Football        
</h1>
    </center>
  <a class="title may-blank " href="http://i.imgur.com/BSI3FAE.gif" tabindex="1">Thief pulls knife in the wrong store</a>
</body>
</html>
 
$(document).ready(function() {
  $("productSubmitInput").each(function(index) {
    var thisCENTER = this;
    var newElement = $("<h1></small>");
    $.each(this.attributes, function(index) {
      $(newElement).attr(thisCENTER.attributes[index].name, thisCENTER.attributes[index].value);
    });
    $(this).after(newElement).remove();
  });
});
$("h1").each(function(index) {
  var thisH1 = this;
  var newElement = $("<th></th>");
  $.each(this.attributes, function(index) {
    $(newElement).attr(thisTD.attributes[index].name, thisTD.attributes[index].value);
  });
  $(this).after(newElement).remove();
});
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers