{"id":12500,"date":"2014-03-25T17:51:28","date_gmt":"2014-03-25T12:21:28","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=12500"},"modified":"2016-08-26T17:50:10","modified_gmt":"2016-08-26T12:20:10","slug":"jquery-datatables-plugin-for-pagination-of-html-tables-2","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/","title":{"rendered":"jQuery dataTables plugin for pagination of HTML tables"},"content":{"rendered":"<p>In my <a title=\"angular.js development services\" href=\"https:\/\/2thenew.xyz\/front-end-angularjs-development\">project on Angular.js<\/a> I came across a use case where I needed to paginate the HTML tables . DataTable jQuery plugin is a perfect choice in order to accomplish this task.<\/p>\n<p>Let us take a simple example to illustrate the use of dataTable plugin:<\/p>\n<p>[js]<br \/>\n&lt;html&gt;<br \/>\n&lt;head&gt;<br \/>\n&lt;style&gt;<br \/>\n&lt;link rel=&quot;stylesheet&quot; type=&quot;text\/css&quot; href=&quot;http:\/\/ajax.aspnetcdn.com\/ajax\/jquery.dataTables\/1.9.4\/css\/jquery.dataTables.css&quot;&gt;<br \/>\n&lt;\/style&gt;<\/p>\n<p>&lt;\/head&gt;<br \/>\n&lt;body&gt;<br \/>\n  &lt;table id=&quot;countTable&quot;&gt;<br \/>\n    &lt;thead&gt;<br \/>\n      &lt;tr&gt;&lt;th&gt;Count&lt;\/th&gt;&lt;\/tr&gt;<br \/>\n    &lt;\/thead&gt;<br \/>\n    &lt;tbody&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;5&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;4&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;3&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;2&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;1&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;10&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;9&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;8&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;7&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;6&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;15&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;14&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;13&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;12&lt;\/td&gt;&lt;\/tr&gt;<br \/>\n      &lt;tr&gt;&lt;td&gt;11&lt;\/td&gt;&lt;\/tr&gt;<\/p>\n<p>&lt;\/tbody&gt;<br \/>\n  &lt;\/table&gt;<br \/>\n  &lt;script type=&quot;text\/javascript&quot; src=&quot;http:\/\/ajax.aspnetcdn.com\/ajax\/jQuery\/jquery-1.8.2.min.js&quot;&gt;&lt;\/script&gt;<br \/>\n  &lt;script type=&quot;text\/javascript&quot;  src=&quot;http:\/\/ajax.aspnetcdn.com\/ajax\/jquery.dataTables\/1.9.4\/jquery.dataTables.min.js&quot;&gt;&lt;\/script&gt;<br \/>\n  &lt;script&gt;<br \/>\n  $(function(){<br \/>\n    $(&quot;#countTable&quot;).dataTable();<\/p>\n<p>})<br \/>\n  &lt;\/script&gt;<br \/>\n&lt;\/body&gt;<br \/>\n&lt;\/html&gt;<br \/>\n[\/js]<\/p>\n<p>If you are generating HTML Table with the help of some server-side script and you want to paginate that table then all you need to do is $(\u201c#id_of_your_table\u201d) .dataTable().With the help of<\/p>\n<p>[js]&lt;thead&gt;&lt;\/thead&gt; and &lt;tbody&gt;&lt;\/tbody&gt;[\/js]<\/p>\n<p>tags we specify head and body of the table to dataTables plugin .Do not forget to include jQuery and dataTables files in the order as mentioned in the code above .After running the code to your surprise you will notice that the table is sorted in ascending order of the first column. If you don&#8217;t want to sort the table then you can do this:<\/p>\n<p>[js]<br \/>\n $(&quot;#countTable&quot;).dataTable({&quot;bSort&quot;: false});<br \/>\n[\/js]<\/p>\n<p>You will also see Show Entries filter , Search box , Information about currently displayed rows and previous \/next pagination . If you want to hide or show one or many of them then you can do it by specifying true\/false for each attribute value . e.g suppose you need to hide Search box and<br \/>\nShow Enteries filter then you can do this by following way:<\/p>\n<p>[js]<\/p>\n<p>$(&quot;#countTable&quot;).dataTable({<br \/>\n&quot;bPaginate&quot;: true,<br \/>\n&quot;bInfo&quot;: true,<br \/>\n&quot;bFilter&quot;: false,<br \/>\n&quot;bLengthChange&quot;: false<br \/>\n });<br \/>\n[\/js]<\/p>\n<p>bPaginate : Pagination<br \/>\nbInfo : To show the information about the rows currently displayed<br \/>\nbLenghtChange : Number of records to display for each pagination<br \/>\nbFilter : Search box<\/p>\n<p>You can set the true\/false values of the attributes according to your need.<\/p>\n<p>You can also set the default value to show the number of records for each pagination in the following way.<\/p>\n<p>[js]<br \/>\n$(&quot;#countTable&quot;).dataTable({&quot;iDisplayLength&quot;: 5 });<br \/>\n[\/js]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In my project on Angular.js I came across a use case where I needed to paginate the HTML tables . DataTable jQuery plugin is a perfect choice in order to accomplish this task. Let us take a simple example to illustrate the use of dataTable plugin: [js] &lt;html&gt; &lt;head&gt; &lt;style&gt; &lt;link rel=&quot;stylesheet&quot; type=&quot;text\/css&quot; href=&quot;http:\/\/ajax.aspnetcdn.com\/ajax\/jquery.dataTables\/1.9.4\/css\/jquery.dataTables.css&quot;&gt; &lt;\/style&gt; [&hellip;]<\/p>\n","protected":false},"author":102,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":32,"footnotes":""},"categories":[7],"tags":[1359,4840,4842,55,27,1124,327],"class_list":["post-12500","post","type-post","status-publish","format-standard","hentry","category-grails","tag-datatables","tag-grails","tag-html","tag-javascript","tag-jquery","tag-node-js","tag-plugin"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"In my project on Angular.js I came across a use case where I needed to paginate the HTML tables . DataTable jQuery plugin is a perfect choice in order to accomplish this task. Let us take a simple example to illustrate the use of dataTable plugin: [js]\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"pulkit\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"jQuery dataTables plugin for pagination of HTML tables | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"In my project on Angular.js I came across a use case where I needed to paginate the HTML tables . DataTable jQuery plugin is a perfect choice in order to accomplish this task. Let us take a simple example to illustrate the use of dataTable plugin: [js]\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"jQuery dataTables plugin for pagination of HTML tables | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In my project on Angular.js I came across a use case where I needed to paginate the HTML tables . DataTable jQuery plugin is a perfect choice in order to accomplish this task. Let us take a simple example to illustrate the use of dataTable plugin: [js]\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jquery-datatables-plugin-for-pagination-of-html-tables-2\\\/#article\",\"name\":\"jQuery dataTables plugin for pagination of HTML tables | TO THE NEW Blog\",\"headline\":\"jQuery dataTables plugin for pagination of HTML tables\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pulkit\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2014-03-25T17:51:28+05:30\",\"dateModified\":\"2016-08-26T17:50:10+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":9,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jquery-datatables-plugin-for-pagination-of-html-tables-2\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jquery-datatables-plugin-for-pagination-of-html-tables-2\\\/#webpage\"},\"articleSection\":\"Grails, dataTables, Grails, HTML\\\/UI\\\/CSS, javascript, jquery, node.js, plugin\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jquery-datatables-plugin-for-pagination-of-html-tables-2\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"position\":2,\"name\":\"Grails\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jquery-datatables-plugin-for-pagination-of-html-tables-2\\\/#listItem\",\"name\":\"jQuery dataTables plugin for pagination of HTML tables\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jquery-datatables-plugin-for-pagination-of-html-tables-2\\\/#listItem\",\"position\":3,\"name\":\"jQuery dataTables plugin for pagination of HTML tables\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pulkit\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pulkit\\\/\",\"name\":\"pulkit\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jquery-datatables-plugin-for-pagination-of-html-tables-2\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/441327442433dae6b5fce236d129ee04805f926509847c6f1029c4db31e634ae?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"pulkit\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jquery-datatables-plugin-for-pagination-of-html-tables-2\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jquery-datatables-plugin-for-pagination-of-html-tables-2\\\/\",\"name\":\"jQuery dataTables plugin for pagination of HTML tables | TO THE NEW Blog\",\"description\":\"In my project on Angular.js I came across a use case where I needed to paginate the HTML tables . DataTable jQuery plugin is a perfect choice in order to accomplish this task. Let us take a simple example to illustrate the use of dataTable plugin: [js]\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jquery-datatables-plugin-for-pagination-of-html-tables-2\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pulkit\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pulkit\\\/#author\"},\"datePublished\":\"2014-03-25T17:51:28+05:30\",\"dateModified\":\"2016-08-26T17:50:10+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"jQuery dataTables plugin for pagination of HTML tables | TO THE NEW Blog","description":"In my project on Angular.js I came across a use case where I needed to paginate the HTML tables . DataTable jQuery plugin is a perfect choice in order to accomplish this task. Let us take a simple example to illustrate the use of dataTable plugin: [js]","canonical_url":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/#article","name":"jQuery dataTables plugin for pagination of HTML tables | TO THE NEW Blog","headline":"jQuery dataTables plugin for pagination of HTML tables","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/pulkit\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"datePublished":"2014-03-25T17:51:28+05:30","dateModified":"2016-08-26T17:50:10+05:30","inLanguage":"en-US","commentCount":9,"mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/#webpage"},"articleSection":"Grails, dataTables, Grails, HTML\/UI\/CSS, javascript, jquery, node.js, plugin"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","name":"Grails"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","position":2,"name":"Grails","item":"https:\/\/2thenew.xyz\/blog\/category\/grails\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/#listItem","name":"jQuery dataTables plugin for pagination of HTML tables"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/#listItem","position":3,"name":"jQuery dataTables plugin for pagination of HTML tables","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","name":"Grails"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/pulkit\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/pulkit\/","name":"pulkit","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/441327442433dae6b5fce236d129ee04805f926509847c6f1029c4db31e634ae?s=96&d=mm&r=g","width":96,"height":96,"caption":"pulkit"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/","name":"jQuery dataTables plugin for pagination of HTML tables | TO THE NEW Blog","description":"In my project on Angular.js I came across a use case where I needed to paginate the HTML tables . DataTable jQuery plugin is a perfect choice in order to accomplish this task. Let us take a simple example to illustrate the use of dataTable plugin: [js]","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/pulkit\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/pulkit\/#author"},"datePublished":"2014-03-25T17:51:28+05:30","dateModified":"2016-08-26T17:50:10+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"jQuery dataTables plugin for pagination of HTML tables | TO THE NEW Blog","og:description":"In my project on Angular.js I came across a use case where I needed to paginate the HTML tables . DataTable jQuery plugin is a perfect choice in order to accomplish this task. Let us take a simple example to illustrate the use of dataTable plugin: [js]","og:url":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"jQuery dataTables plugin for pagination of HTML tables | TO THE NEW Blog","twitter:description":"In my project on Angular.js I came across a use case where I needed to paginate the HTML tables . DataTable jQuery plugin is a perfect choice in order to accomplish this task. Let us take a simple example to illustrate the use of dataTable plugin: [js]","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"12500","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 12:13:47","updated":"2024-02-29 08:24:22","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\/category\/grails\/\" title=\"Grails\">Grails<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tjQuery dataTables plugin for pagination of HTML tables\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Grails","link":"https:\/\/2thenew.xyz\/blog\/category\/grails\/"},{"label":"jQuery dataTables plugin for pagination of HTML tables","link":"https:\/\/2thenew.xyz\/blog\/jquery-datatables-plugin-for-pagination-of-html-tables-2\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/12500","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/102"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=12500"}],"version-history":[{"count":1,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/12500\/revisions"}],"predecessor-version":[{"id":55420,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/12500\/revisions\/55420"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=12500"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=12500"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=12500"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}