Guest User

Untitled

a guest
Feb 19th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. var dataSet = [
  2. [ "Tiger Nixon", "System Architect", "Edinburgh", "5421", "2011/04/25", "$320,800" ],
  3. [ "Garrett Winters", "Accountant", "Tokyo", "8422", "2011/07/25", "$170,750" ],
  4. [ "Ashton Cox", "Junior Technical Author", "San Francisco", "1562", "2009/01/12", "$86,000" ]
  5. ];
  6.  
  7. $(document).ready(function() {
  8. $('#example').DataTable( {
  9. data: dataSet,
  10. columns: [
  11. { title: "Name" },
  12. { title: "Position" },
  13. { title: "Office" },
  14. { title: "Extn." },
  15. { title: "Start date" },
  16. { title: "Salary" }
  17. ]
  18. } );
  19. } );
Add Comment
Please, Sign In to add comment