<!DOCTYPE html>
<html>
  <head>
    <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.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>
<link href="https://nightly.datatables.net/datetime/css/dataTables.dateTime.css?_=51ef39aba7fb7ecb2ccd3a91f1dccc6e.css" rel="stylesheet" type="text/css" />
<script src="https://nightly.datatables.net/datetime/js/dataTables.dateTime.js?_=51ef39aba7fb7ecb2ccd3a91f1dccc6e"></script>
    
    
    <link href="https://nightly.datatables.net/searchbuilder/css/searchBuilder.dataTables.css?_=40f0e1a3ea332af586366e40955c1713.css" rel="stylesheet" type="text/css" />
<script src="https://nightly.datatables.net/searchbuilder/js/dataTables.searchBuilder.js?_=40f0e1a3ea332af586366e40955c1713"></script>
            <script src="https://cdn.datatables.net/plug-ins/1.10.19/sorting/datetime-moment.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>Name</th>
            <th>Position</th>
            <th>Office</th>
            <th>Age</th>
            <th>Start date</th>
            <th>Salary</th>
          </tr>
        </thead>
        <tfoot>
          <tr>
            <th>Name</th>
            <th>Position</th>
            <th>Office</th>
            <th>Age</th>
            <th>Start date</th>
            <th>Salary</th>
          </tr>
        </tfoot>
        <tbody>
          <tr>
            <td>Tiger Nixon</td>
            <td>System Architect</td>
            <td>Edinburgh</td>
            <td>61</td>
            <td>09:34 2011/04/25</td>
            <td>$3,120</td>
          </tr>
          <tr>
            <td>Garrett Winters</td>
            <td>Director</td>
            <td>Edinburgh</td>
            <td>63</td>
            <td>15:22 2011/07/25</td>
            <td>$5,300</td>
          </tr>
               <tr>
            <td>Garrett</td>
            <td>Director</td>
            <td>Edinburgh</td>
            <td>63</td>
            <td>18:22 2011/06/25</td>
            <td>$5,300</td>
          </tr>
        </tbody>
      </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 () {
  
  $.extend( true, $.fn.dataTable.DateTime.defaults, {
    "buttons": {
      "today": true,
      "clear": true
    }
  } );  
  
  $.fn.dataTable.moment( 'HH:mm YYYY/MM/DD' );
  var table = $('#example').DataTable({
    dom: 'Qfrtip'
  });
} );
Output 300px

This bin was created anonymously and its free preview time has expired. Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers