{"id":255,"date":"2014-12-24T07:54:08","date_gmt":"2014-12-24T07:54:08","guid":{"rendered":"http:\/\/shabeebk.com\/blog\/?p=255"},"modified":"2014-12-24T20:30:36","modified_gmt":"2014-12-24T20:30:36","slug":"jquery-scrolltop","status":"publish","type":"post","link":"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/","title":{"rendered":"jquery scrollTop &#8211; with animation"},"content":{"rendered":"<p><strong>The jquery scrolltop () method gets the  top offset of the first matched element.<\/strong><\/p>\n<p>Let us have a look,<br \/>\n<br \/>\nIf we want to know vertical scroll postion of current window we can use,<\/p>\n<pre class=\"lang:default decode:true \" >scroll_leng= $(window).scrollTop();<\/pre>\n<p>\nIt will return the vertical scrollbar position  of corresponding to window.<br \/>\n <br \/>\nlike the same we can set the vertical scrollbar position of window into some postion as below <\/p>\n<pre class=\"lang:default decode:true \" > $(window).scrollTop(position);<\/pre>\n<p><\/p>\n<p> If we want to know vertical scroll postion of a perticular element window we can use,<br \/>\n<\/p>\n<pre class=\"lang:default decode:true \" >scroll_leng= $(selector).scrollTop();<\/pre>\n<p>It will return the vertical scrollbar position  of particular element.<br \/>\n <br \/>\nlike the same we can set the vertical scrollbar position of particular element into some postion as below<br \/>\n<\/p>\n<pre class=\"lang:default decode:true \" > $(selector).scrollTop(position);<\/pre>\n<p>Sometime we have to give animation also , it is simple by using animate function in jquery<\/p>\n<p><\/p>\n<pre class=\"lang:default decode:true \" >$(selector).animate({scrollTop: scroll_value}, delay);<\/pre>\n<p>sample demo below:<\/p>\n<p><\/p>\n<p> <script src=\"http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.11.1\/jquery.min.js\"><\/script><br \/>\n        <script>\n            $(document).ready(function () {\n                $(\"#change_scroll\").click(function () {\n                    var newscrol = $('#scrollval').val();\n                    $(\"#divid\").scrollTop(newscrol);\n                    scrold_len = ($(\"#divid\").scrollTop() + \" px\");\n                    $('#scrolled_length').html(scrold_len);\n                });<\/p>\n<p>                $(\"#show_scroll\").click(function () {<\/p>\n<p>                    scrold_len = ($(\"#divid\").scrollTop() + \" px\");\n                    $('#scrolled_length').html(scrold_len);\n                });<\/p>\n<p>                $(\"#divid\").scroll(function () {\n                    scrold_len = ($(\"#divid\").scrollTop() + \" px\");\n                    $('#scrolled_length').html(scrold_len);\n                });<\/p>\n<p>\/\/with window functions here<\/p>\n<p>                $(\"#windowchange_scroll\").click(function () {<\/p>\n<p>                    scrold_len = ($(\"#windowscrollval\").scrollTop() + \" px\");<\/p>\n<p>                    $(window).html(scrold_len);\n                });<\/p>\n<p>                $(\"#windowchange_scroll\").click(function () {<\/p>\n<p>                    var newscrol = $('#windowscrollval').val();<\/p>\n<p>                    $(window).scrollTop(newscrol);<\/p>\n<p>                });<\/p>\n<p>                \/\/with animation starts here\n                $(\"#change_scroll_anim\").click(function () {<\/p>\n<p>                    var newscrol = $('#scrollval_anim').val();\n                    $(\"#divid_anim\").animate({scrollTop: newscrol}, 1000);<\/p>\n<p>                    scrold_len = ($(\"#divid_anim\").scrollTop() + \" px\");\n                    $('#scrolled_length_anim').html(scrold_len);\n                });<\/p>\n<p>                $(\"#show_scroll_anim\").click(function () {<\/p>\n<p>                    scrold_len = ($(\"#divid_anim\").scrollTop() + \" px\");\n                    $('#scrolled_length_anim').html(scrold_len);\n                });<\/p>\n<p>                $(\"#divid_anim\").scroll(function () {<\/p>\n<p>                    scrold_len = ($(\"#divid_anim\").scrollTop() + \" px\");\n                    $('#scrolled_length_anim').html(scrold_len);\n                });<\/p>\n<p>\/\/with window animated functions here<\/p>\n<p>                $(\"#windowchange_scroll_anim\").click(function () {<\/p>\n<p>                    scrold_len = ($(\"#windowscrollval_anim\").scrollTop() + \" px\");<\/p>\n<p>                    $(window).html(scrold_len);\n                });<\/p>\n<p>                $(\"#windowchange_scroll_anim\").click(function () {<\/p>\n<p>                    var newscrol = $('#windowscrollval_anim').val();<\/p>\n<p>                    $('body').animate({scrollTop: newscrol}, 1000);<\/p>\n<p>                });<\/p>\n<p>            });\n        <\/script><br \/>\n    <\/head><br \/>\n    <body><\/p>\n<div id=\"divid\" style=\"border:1px solid black;width:300px;height:200px;overflow:auto\">\n<p>            Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<br \/>\n            Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<br \/>\n            Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\/p><\/div>\n<p>        <input type=\"text\" style=\"width:150px;margin: 10px 0px\" value=\"0\" id=\"scrollval\" \/><br \/>\n        <input type=\"button\" style=\"width:150px;margin: 10px 0px\" value=\"scroll to \" id=\"change_scroll\" \/><br \/>\n        <\/p>\n<div id=\"scrolled_length\"  style=\"width:150px;float:left;margin: 10px 0px\"> 0 px <\/div>\n<p>        <input type=\"button\" style=\"width:150px;margin: 10px 0px\" value=\"find scroll \" id=\"show_scroll\" \/><\/p>\n<p>Now Let us look a demo with window object ,<br \/>\n        Enter a value to scroll top<br \/>\n        <br \/>\n        <input type=\"text\" style=\"width:150px;margin: 10px 0px\" value=\"0\" id=\"windowscrollval\" \/><br \/>\n        <input type=\"button\" style=\"width:150px;margin: 10px 0px\" value=\"scroll to \" id=\"windowchange_scroll\" \/><\/p>\n<p><\/p>\n<p>        Now letus look scrollTo with animations <\/p>\n<div id=\"divid_anim\" style=\"border:1px solid black;width:300px;height:200px;overflow:auto\">\n<p>            Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<br \/>\n            Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<br \/>\n            Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\/p><\/div>\n<p>        <input type=\"text\" style=\"width:150px;margin: 10px 0px\" value=\"0\" id=\"scrollval_anim\" \/><br \/>\n        <input type=\"button\" style=\"width:150px;margin: 10px 0px\" value=\"scroll to \" id=\"change_scroll_anim\" \/><br \/>\n        <\/p>\n<div id=\"scrolled_length_anim\"  style=\"width:150px;float:left;margin: 10px 0px\"> 0 px <\/div>\n<p>        <input type=\"button\" style=\"width:150px;margin: 10px 0px\" value=\"find scroll \" id=\"show_scroll_anim\" \/><\/p>\n<p>Now Let us look a demo with window object animated ,<br \/>\n        Enter a value to scroll top<br \/>\n        <br \/>\n        <input type=\"text\" style=\"width:150px;margin: 10px 0px\" value=\"0\" id=\"windowscrollval_anim\" \/><br \/>\n        <input type=\"button\" style=\"width:150px;margin: 10px 0px\" value=\"scroll to \" id=\"windowchange_scroll_anim\" \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n<p class=\"pvc_stats all \" data-element-id=\"255\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> &nbsp;4,039&nbsp;total views, &nbsp;2&nbsp;views today<\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>The jquery scrolltop () method gets the top offset of the first matched element. Let us have a look, If we want to know vertical scroll postion of current window we can use, scroll_leng= $(window).scrollTop(); It will return the vertical scrollbar position of corresponding to window. like the same we can set the vertical scrollbar [&hellip;]<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p class=\"pvc_stats all \" data-element-id=\"255\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> &nbsp;4,039&nbsp;total views, &nbsp;2&nbsp;views today<\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"spay_email":""},"categories":[4,14,1],"tags":[31,30,28,29],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v18.4.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>jquery scrollTop - with animation<\/title>\n<meta name=\"description\" content=\"The jquery scrollTop() method gets the top offset of the first matched element.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"jquery scrollTop - with animation\" \/>\n<meta property=\"og:description\" content=\"The jquery scrollTop() method gets the top offset of the first matched element.\" \/>\n<meta property=\"og:url\" content=\"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/\" \/>\n<meta property=\"og:site_name\" content=\"shabeeb Blog\" \/>\n<meta property=\"article:published_time\" content=\"2014-12-24T07:54:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2014-12-24T20:30:36+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"shabeeb\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"http:\/\/shabeebk.com\/blog\/#website\",\"url\":\"http:\/\/shabeebk.com\/blog\/\",\"name\":\"shabeeb Blog\",\"description\":\"A developer blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/shabeebk.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/#webpage\",\"url\":\"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/\",\"name\":\"jquery scrollTop - with animation\",\"isPartOf\":{\"@id\":\"http:\/\/shabeebk.com\/blog\/#website\"},\"datePublished\":\"2014-12-24T07:54:08+00:00\",\"dateModified\":\"2014-12-24T20:30:36+00:00\",\"author\":{\"@id\":\"http:\/\/shabeebk.com\/blog\/#\/schema\/person\/71832abe654179971635c65c09bceb29\"},\"description\":\"The jquery scrollTop() method gets the top offset of the first matched element.\",\"breadcrumb\":{\"@id\":\"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/shabeebk.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"jquery scrollTop &#8211; with animation\"}]},{\"@type\":\"Person\",\"@id\":\"http:\/\/shabeebk.com\/blog\/#\/schema\/person\/71832abe654179971635c65c09bceb29\",\"name\":\"shabeeb\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"http:\/\/shabeebk.com\/blog\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"http:\/\/0.gravatar.com\/avatar\/9998389cc76a77663881c48f7d4cbba0?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/0.gravatar.com\/avatar\/9998389cc76a77663881c48f7d4cbba0?s=96&d=mm&r=g\",\"caption\":\"shabeeb\"},\"description\":\"Developer,Entrepreneur, software engineer more than that a human being\",\"sameAs\":[\"http:\/\/shabeebk.com\/blog\"],\"url\":\"http:\/\/shabeebk.com\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"jquery scrollTop - with animation","description":"The jquery scrollTop() method gets the top offset of the first matched element.","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":"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/","og_locale":"en_US","og_type":"article","og_title":"jquery scrollTop - with animation","og_description":"The jquery scrollTop() method gets the top offset of the first matched element.","og_url":"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/","og_site_name":"shabeeb Blog","article_published_time":"2014-12-24T07:54:08+00:00","article_modified_time":"2014-12-24T20:30:36+00:00","twitter_misc":{"Written by":"shabeeb","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"http:\/\/shabeebk.com\/blog\/#website","url":"http:\/\/shabeebk.com\/blog\/","name":"shabeeb Blog","description":"A developer blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/shabeebk.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/#webpage","url":"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/","name":"jquery scrollTop - with animation","isPartOf":{"@id":"http:\/\/shabeebk.com\/blog\/#website"},"datePublished":"2014-12-24T07:54:08+00:00","dateModified":"2014-12-24T20:30:36+00:00","author":{"@id":"http:\/\/shabeebk.com\/blog\/#\/schema\/person\/71832abe654179971635c65c09bceb29"},"description":"The jquery scrollTop() method gets the top offset of the first matched element.","breadcrumb":{"@id":"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/shabeebk.com\/blog\/jquery-scrolltop\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/shabeebk.com\/blog\/"},{"@type":"ListItem","position":2,"name":"jquery scrollTop &#8211; with animation"}]},{"@type":"Person","@id":"http:\/\/shabeebk.com\/blog\/#\/schema\/person\/71832abe654179971635c65c09bceb29","name":"shabeeb","image":{"@type":"ImageObject","@id":"http:\/\/shabeebk.com\/blog\/#personlogo","inLanguage":"en-US","url":"http:\/\/0.gravatar.com\/avatar\/9998389cc76a77663881c48f7d4cbba0?s=96&d=mm&r=g","contentUrl":"http:\/\/0.gravatar.com\/avatar\/9998389cc76a77663881c48f7d4cbba0?s=96&d=mm&r=g","caption":"shabeeb"},"description":"Developer,Entrepreneur, software engineer more than that a human being","sameAs":["http:\/\/shabeebk.com\/blog"],"url":"http:\/\/shabeebk.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","_links":{"self":[{"href":"http:\/\/shabeebk.com\/blog\/wp-json\/wp\/v2\/posts\/255"}],"collection":[{"href":"http:\/\/shabeebk.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/shabeebk.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/shabeebk.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/shabeebk.com\/blog\/wp-json\/wp\/v2\/comments?post=255"}],"version-history":[{"count":8,"href":"http:\/\/shabeebk.com\/blog\/wp-json\/wp\/v2\/posts\/255\/revisions"}],"predecessor-version":[{"id":265,"href":"http:\/\/shabeebk.com\/blog\/wp-json\/wp\/v2\/posts\/255\/revisions\/265"}],"wp:attachment":[{"href":"http:\/\/shabeebk.com\/blog\/wp-json\/wp\/v2\/media?parent=255"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/shabeebk.com\/blog\/wp-json\/wp\/v2\/categories?post=255"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/shabeebk.com\/blog\/wp-json\/wp\/v2\/tags?post=255"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}