<!DOCTYPE html>
<html>
  <head>
    <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
    <link href="https://nightly.datatables.net/css/jquery.dataTables.css" rel="stylesheet" type="text/css" />
    <script src="https://nightly.datatables.net/js/jquery.dataTables.js"></script>
    <meta charset=utf-8 />
    <title>DataTables - JS Bin</title>
  </head>
  <body>
    <div class="container">
      <table id="example" class="display nowrap" width="100%">
        <thead>
          <tr>
            <th>URL</th>
          </tr>
        </thead>
        <tfoot>
          <tr>
            <th>URL</th>
         </tr>
        </tfoot>
 
      </table>
    </div>
  </body>
</html>
 
body {
  font: 90%/1.45em "Helvetica Neue", HelveticaNeue, Verdana, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
}
 
$(document).ready( function () {
  var data = [
        ["\t\t10 Miles Of Cars Line Up For Trump  And A Raucous Night In A Small Town\t"],
        ["\t\t10 Years After Gosnells House Of Horrors  It Could Still Happen Again\t"],
        ["\t\t12 Ways For Trump To Bomb The Battlefield While Biden Claims He Won\t"],
        ["\t\t1960s Riots Foreshadow Todays Communist Weaponization Of Black Pain\t"],
        ["\t\t2020 Shatters Annual Gun Sales Record  An Estimated 17 Million Sold Year-To-Date\t"],
        ["\t\t3 Breakdowns In Standards That Explain The Atlantics Trump Hit Piece\t"],
        ["\t\t3 Reasons Election Forecasts Made False Projections Favoring Joe Biden\t"],
        ["\t\t3 Ways Donald Trumps Debate Performance Will Affect The Race\t"],
        ["\t\t400 Years Later The Mayflower Compact Matters Now More Than Ever\t"],
        ["\t\t5 Big Problems With NYTs Investigation Of Amy Coney Barretts Children\t"]
    ];
  
  var table = $('#example').DataTable({
    data: data,
    "columnDefs": [ {
      "targets": 0,
      "render": function ( data, type, row, meta ) {
        return '<a href="'+data+'">'+data+'</a>';
      }
    } ]
  });
} );
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers