{"id":19513,"date":"2017-12-12T12:49:53","date_gmt":"2017-12-12T10:49:53","guid":{"rendered":"https:\/\/www.webcodegeeks.com\/?p=19513"},"modified":"2017-12-12T12:49:53","modified_gmt":"2017-12-12T10:49:53","slug":"creating-bootpag-like-pagination-component-using-vuejs","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/","title":{"rendered":"Creating Bootpag Like Pagination Component Using Vuejs"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>In this article, I will try to create a pagination Vuejs component similar to the one supported by <a href=\"http:\/\/botmonster.com\/jquery-bootpag\">jQuery Bootpag plugin<\/a>.<\/p>\n<h2>Component State<\/h2>\n<p>The component should track the following:<\/p>\n<ul>\n<li>Current Page<\/li>\n<li>Callback to be executed page click<\/li>\n<li>Max visible page numbers<\/li>\n<li>Start and end of the range of page numbers visible<\/li>\n<\/ul>\n<h2>Component Event Handlers<\/h2>\n<p>The component handles 3 events:<\/p>\n<ul>\n<li>Two events related to navigating Next and Previous set of pages<\/li>\n<li>One event to change the page \u2013 the event handler is provided by the parent.<\/li>\n<\/ul>\n<h2>Component Dependencies<\/h2>\n<p>The component requires the following dependencies:<\/p>\n<ul>\n<li>Bootstrap 4. I am using the <a href=\"https:\/\/bootswatch.com\/4\/cerulean\/bootstrap.min.css\">Bootswatch Celurean<\/a> theme<\/li>\n<li><a href=\"https:\/\/cdn.jsdelivr.net\/npm\/lodash@4.17.4\/lodash.min.js\">Lodash javascript library<\/a><\/li>\n<\/ul>\n<h2>Component HTML Template<\/h2>\n<p>We will be using Bootstrap for designing the component, so the HTML template for the component is:<\/p>\n<pre class=\"brush:xml\">var paginationTemplate = '\\\r\n    &lt;nav aria-label=\"Page navigation example\"&gt;\\\r\n        &lt;ul class=\"pagination\"&gt;\\\r\n        &lt;li class=\"page-item\" :class=\"{disabled: disablePrev}\"&gt;\\\r\n            &lt;a class=\"page-link\" href=\"javascript:void(0);\"\\\r\n                v-on:click=\"previous\"&gt;Previous&lt;\/a&gt;\\\r\n        &lt;\/li&gt;\\\r\n        &lt;li class=\"page-item\" :class=\"{ active: (p == current)}\" v-for=\"p in range\"&gt;\\\r\n            &lt;a class=\"page-link\" href=\"javascript:void(0);\" \\\r\n                v-on:click=\"callback(p)\"&gt;{{ p }}&lt;\/a&gt;\\\r\n        &lt;\/li&gt;\\\r\n        &lt;li class=\"page-item\" :class=\"{disabled: disableNext}\"&gt;\\\r\n            &lt;a class=\"page-link\" v-on:click=\"next\" href=\"javascript:void(0)\"&gt;Next&lt;\/a&gt;\\\r\n        &lt;\/li&gt;\\\r\n        &lt;\/ul&gt;\\\r\n    &lt;\/nav&gt;\\\r\n';<\/pre>\n<p>We have assigned the HTML template to a javascript variable. Let me explain the Vuejs Directives used above:<\/p>\n<ul>\n<li><code>:class<\/code> \u2013 this is used to assign class names dynamically to the HTML element. The class names identified by this directive get merged with the class names defined statically using the <code>class<\/code> HTML attribute. I have provided a JSON object where key is the class name and the value is a boolean indicating whether the class should be present or not.<\/li>\n<li><code>v-on:click<\/code> \u2013 this directive is used to assign click event handler<\/li>\n<li><code>v-for<\/code> \u2013 this is used for looping over list of items or a range of values<\/li>\n<\/ul>\n<h2>Component Definition using Vuejs<\/h2>\n<p>In the previous sections, we saw what the component stores, what events it handles and the HTML for the component, let\u2019s go ahead and define the Vuejs component:<\/p>\n<pre class=\"brush:js\">Vue.component('pagination', {\r\n    template: paginationTemplate,\r\n    props: [\"total\", \"current\", \"callback\", \"maxVisible\"],\r\n    data: function(){\r\n        return {\r\n            start: 1,\r\n            end: (this.maxVisible &gt;= this.total? this.total : this.maxVisible)\r\n        }\r\n    },\r\n    watch:{\r\n        total: function(){\r\n            this.end = (this.maxVisible &gt;= this.total? this.total : this.maxVisible);\r\n        }\r\n    },\r\n    computed: {\r\n        range: function(){\r\n            return _.range(this.start, this.end + 1, 1);\r\n        },\r\n        disablePrev: function(){\r\n            return this.start &lt;= 1;\r\n        },\r\n        disableNext: function(){\r\n            return this.end &gt;= this.total;\r\n        }\r\n    },\r\n    methods:{\r\n        next: function(){\r\n            var newEnd = this.end + this.maxVisible;\r\n            if ( newEnd &lt;= this.total){\r\n                this.start = this.start + this.maxVisible;\r\n                this.end = newEnd;  \r\n            }\r\n            \r\n        },\r\n        \r\n        previous: function(){\r\n            var newStart = this.start - this.maxVisible;\r\n            if ( newStart &gt;= 1){\r\n                this.start = newStart;\r\n                this.end = this.end - this.maxVisible;  \r\n            }\r\n        }\r\n        \r\n    }\r\n    \r\n});<\/pre>\n<p>Let me elaborate on the properties of the JSON object defined above:<\/p>\n<ul>\n<li><code>template<\/code> \u2013 HTML code for the component<\/li>\n<li><code>props<\/code> \u2013 properties accepted by the component<\/li>\n<li><code>data<\/code> \u2013 the internal state maintained by the component<\/li>\n<li><code>watch<\/code> \u2013 the handlers which are executed when the watched property value changes<\/li>\n<li><code>computed<\/code> \u2013 the computed properties of the component. This are recomputed whenever their dependent state changes<\/li>\n<li><code>methods<\/code> \u2013 the methods which are bound as event handlers<\/li>\n<\/ul>\n<h2>Component in Action<\/h2>\n<p>Let us use the above component in an HTML page:<\/p>\n<pre class=\"brush:xml\">&lt;div class=\"row\"&gt;\r\n    &lt;div class=\"col-md-offset-3 col-md-6\"&gt;\r\n        &lt;pagination :total=\"totalPages\" :current=\"currentPage\" \r\n            :max-visible=\"maxVisible\" :callback=\"paginationCallback\"&gt;\r\n        &lt;\/pagination&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/div&gt;<\/pre>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>Published on Web Code Geeks with permission by Mohamed Sanaulla, partner at our <a href=\"http:\/\/www.webcodegeeks.com\/join-us\/wcg\/\" target=\"_blank\" rel=\"noopener\">WCG program<\/a>. See the original article here: <a href=\"https:\/\/sanaulla.info\/2017\/12\/10\/creating-bootpag-like-pagination-component-using-vuejs\/\" target=\"_blank\" rel=\"noopener\">Creating Bootpag Like Pagination Component Using Vuejs<\/a><\/p>\n<p>Opinions expressed by Web Code Geeks contributors are their own.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In this article, I will try to create a pagination Vuejs component similar to the one supported by jQuery Bootpag plugin. Component State The component should track the following: Current Page Callback to be executed page click Max visible page numbers Start and end of the range of page numbers visible Component Event Handlers &hellip;<\/p>\n","protected":false},"author":3,"featured_media":920,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[427],"class_list":["post-19513","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-javascript","tag-vue-js"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Creating Bootpag Like Pagination Component Using Vuejs - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Introduction In this article, I will try to create a pagination Vuejs component similar to the one supported by jQuery Bootpag plugin. Component State The\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating Bootpag Like Pagination Component Using Vuejs - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Introduction In this article, I will try to create a pagination Vuejs component similar to the one supported by jQuery Bootpag plugin. Component State The\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2017-12-12T10:49:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Mohamed Sanaulla\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mohamed Sanaulla\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/\"},\"author\":{\"name\":\"Mohamed Sanaulla\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/25d8251ab46cf28d12fa1ef1d02d22d1\"},\"headline\":\"Creating Bootpag Like Pagination Component Using Vuejs\",\"datePublished\":\"2017-12-12T10:49:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/\"},\"wordCount\":374,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"keywords\":[\"Vue.js\"],\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/\",\"name\":\"Creating Bootpag Like Pagination Component Using Vuejs - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"datePublished\":\"2017-12-12T10:49:53+00:00\",\"description\":\"Introduction In this article, I will try to create a pagination Vuejs component similar to the one supported by jQuery Bootpag plugin. Component State The\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#primaryimage\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/javascript\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Creating Bootpag Like Pagination Component Using Vuejs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"name\":\"Web Code Geeks\",\"description\":\"Web Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webcodegeeks\",\"https:\/\/x.com\/webcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/25d8251ab46cf28d12fa1ef1d02d22d1\",\"name\":\"Mohamed Sanaulla\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/64131fe9e9472b8852abf595cbbf3a8a2a5e86569fa1349eed92b2a32f9104c1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/64131fe9e9472b8852abf595cbbf3a8a2a5e86569fa1349eed92b2a32f9104c1?s=96&d=mm&r=g\",\"caption\":\"Mohamed Sanaulla\"},\"sameAs\":[\"http:\/\/blog.sanaulla.info\"],\"url\":\"https:\/\/www.webcodegeeks.com\/author\/mohamed-sanaulla\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Creating Bootpag Like Pagination Component Using Vuejs - Web Code Geeks - 2026","description":"Introduction In this article, I will try to create a pagination Vuejs component similar to the one supported by jQuery Bootpag plugin. Component State The","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/","og_locale":"en_US","og_type":"article","og_title":"Creating Bootpag Like Pagination Component Using Vuejs - Web Code Geeks - 2026","og_description":"Introduction In this article, I will try to create a pagination Vuejs component similar to the one supported by jQuery Bootpag plugin. Component State The","og_url":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_published_time":"2017-12-12T10:49:53+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","type":"image\/jpeg"}],"author":"Mohamed Sanaulla","twitter_card":"summary_large_image","twitter_creator":"@webcodegeeks","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Mohamed Sanaulla","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/"},"author":{"name":"Mohamed Sanaulla","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/25d8251ab46cf28d12fa1ef1d02d22d1"},"headline":"Creating Bootpag Like Pagination Component Using Vuejs","datePublished":"2017-12-12T10:49:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/"},"wordCount":374,"commentCount":0,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","keywords":["Vue.js"],"articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/","url":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/","name":"Creating Bootpag Like Pagination Component Using Vuejs - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","datePublished":"2017-12-12T10:49:53+00:00","description":"Introduction In this article, I will try to create a pagination Vuejs component similar to the one supported by jQuery Bootpag plugin. Component State The","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#primaryimage","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.webcodegeeks.com\/javascript\/creating-bootpag-like-pagination-component-using-vuejs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"JavaScript","item":"https:\/\/www.webcodegeeks.com\/category\/javascript\/"},{"@type":"ListItem","position":3,"name":"Creating Bootpag Like Pagination Component Using Vuejs"}]},{"@type":"WebSite","@id":"https:\/\/www.webcodegeeks.com\/#website","url":"https:\/\/www.webcodegeeks.com\/","name":"Web Code Geeks","description":"Web Developers Resource Center","publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.webcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webcodegeeks","https:\/\/x.com\/webcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/25d8251ab46cf28d12fa1ef1d02d22d1","name":"Mohamed Sanaulla","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/64131fe9e9472b8852abf595cbbf3a8a2a5e86569fa1349eed92b2a32f9104c1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/64131fe9e9472b8852abf595cbbf3a8a2a5e86569fa1349eed92b2a32f9104c1?s=96&d=mm&r=g","caption":"Mohamed Sanaulla"},"sameAs":["http:\/\/blog.sanaulla.info"],"url":"https:\/\/www.webcodegeeks.com\/author\/mohamed-sanaulla\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/19513","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=19513"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/19513\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media\/920"}],"wp:attachment":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media?parent=19513"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=19513"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=19513"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}