Guest User

Untitled

a guest
Feb 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. http://demo.example.com?offset=0&limit=10
  2.  
  3. $('#example').dataTable( {
  4. "ajax": {
  5. "url": "data.json",
  6. "dataSrc": function ( json ) {
  7. for ( var i=0, ien=json.length ; i<ien ; i++ ) {
  8. json[i][0] = '<a href="/message/'+json[i][0]+'>Next Page</a>';
  9. }
  10. return json;
  11. }
  12. }
  13. } );
Add Comment
Please, Sign In to add comment