Last active
November 18, 2022 18:18
-
-
Save espenmn/64724699a07d88989cc9839b61db3a92 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| jQuery(document).ready( function () { | |
| jQuery('.datatable').DataTable({ | |
| 'processing': true, | |
| 'data': [ | |
| ['Tiger Nixon', '1' ], | |
| ['Garrett Winters', '2'], | |
| ], | |
| columns: [ | |
| { title: 'Name' }, | |
| { title: 'Position' }, | |
| ], | |
| }) | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment