{"id":631,"date":"2012-01-01T01:12:55","date_gmt":"2012-01-01T09:12:55","guid":{"rendered":"http:\/\/virendrachandak.wordpress.com\/?p=631"},"modified":"2014-10-09T17:36:41","modified_gmt":"2014-10-10T00:36:41","slug":"make-a-div-stick-to-top-when-scrolled-to","status":"publish","type":"post","link":"https:\/\/www.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/","title":{"rendered":"Make a div stick to top when scrolled to"},"content":{"rendered":"<p>There are times when you would want to display a bar at the top of the page when user scrolls on the page and it should go back to its original position when the user scrolls back up. This is particularly useful when you want to add say a share bar, a search bar, etc and make it always visible even when the user is at the bottom of the page.<br \/>\n<!--more--><br \/>\nIn my example I would be displaying a bar after a paragraph of text, and when the user scroll below that, the bar will stick to the top and have different CSS. When the user scrolls back to the top the bar will go back to its original position and the CSS will be changed.<\/p>\n<p>By using jQuery, CSS and some HTML we can easily implement this. Below are the code snippets that would be required to implement this.<\/p>\n<p><strong>jQuery code<\/strong>:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\n\/\/ This function will be executed when the user scrolls the page.\r\n$(window).scroll(function(e) {\r\n    \/\/ Get the position of the location where the scroller starts.\r\n    var scroller_anchor = $(&quot;.scroller_anchor&quot;).offset().top;\r\n    \r\n    \/\/ Check if the user has scrolled and the current position is after the scroller start location and if its not already fixed at the top \r\n    if ($(this).scrollTop() &gt;= scroller_anchor &amp;&amp; $('.scroller').css('position') != 'fixed') \r\n    {    \/\/ Change the CSS of the scroller to hilight it and fix it at the top of the screen.\r\n        $('.scroller').css({\r\n            'background': '#CCC',\r\n            'border': '1px solid #000',\r\n            'position': 'fixed',\r\n            'top': '0px'\r\n        });\r\n        \/\/ Changing the height of the scroller anchor to that of scroller so that there is no change in the overall height of the page.\r\n        $('.scroller_anchor').css('height', '50px');\r\n    } \r\n    else if ($(this).scrollTop() &lt; scroller_anchor &amp;&amp; $('.scroller').css('position') != 'relative') \r\n    {    \/\/ If the user has scrolled back to the location above the scroller anchor place it back into the content.\r\n        \r\n        \/\/ Change the height of the scroller anchor to 0 and now we will be adding the scroller back to the content.\r\n        $('.scroller_anchor').css('height', '0px');\r\n        \r\n        \/\/ Change the CSS and put it back to its original position.\r\n        $('.scroller').css({\r\n            'background': '#FFF',\r\n            'border': '1px solid #CCC',\r\n            'position': 'relative'\r\n        });\r\n    }\r\n});\r\n<\/pre>\n<p><strong>HTML Code<\/strong>:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;div class=&quot;container&quot;&gt;\r\n    &lt;div class=&quot;test_content&quot;&gt;\r\n\t\tLorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus interdum metus nec neque convallis id interdum nibh aliquet. Nulla eget varius diam. Ut ut dolor dolor. Mauris vehicula sodales mi quis euismod. In sem metus, volutpat nec fringilla sed, fermentum ac turpis. Cras aliquam venenatis rutrum. Donec pharetra ante sit amet justo pellentesque nec consequat ante elementum. Ut imperdiet iaculis tortor, id pretium urna pharetra sit amet. Aenean pharetra nunc risus, ac scelerisque urna. Morbi dictum egestas augue, in euismod metus commodo ac. Duis nisl ante, consequat et tincidunt id, eleifend eu ante. Integer lectus velit, tempus eu feugiat et, adipiscing ut mauris.\r\n    &lt;\/div&gt;\r\n    \r\n    &lt;!-- This div is used to indicate the original position of the scrollable fixed div. --&gt;\r\n    &lt;div class=&quot;scroller_anchor&quot;&gt;&lt;\/div&gt;\r\n    \r\n    &lt;!-- This div will be displayed as fixed bar at the top of the page, when user scrolls --&gt;\r\n    &lt;div class=&quot;scroller&quot;&gt;This is the scrollable bar&lt;\/div&gt;\r\n    \r\n    &lt;div class=&quot;test_content&quot;&gt;\r\n        Quisque sollicitudin elit vitae diam consequat accumsan. Suspendisse potenti. Donec dapibus tortor at justo eleifend at pellentesque leo lobortis. Etiam ultrices leo et nulla iaculis eu facilisis augue fermentum. Pellentesque eu leo purus. Vestibulum bibendum, metus at bibendum blandit, lacus neque porttitor diam, id facilisis lectus mauris et leo. Donec adipiscing interdum lacus sed condimentum. In auctor sollicitudin orci, ac interdum risus aliquet ullamcorper. Curabitur mollis accumsan vulputate. Etiam adipiscing diam nec dui posuere ut tincidunt felis tristique. Vestibulum neque enim, placerat sed placerat commodo, consectetur ac mauris. Sed ultrices pretium nibh, a blandit libero imperdiet pulvinar. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae;\r\n    &lt;\/div&gt;\r\n    ...\r\n&lt;\/div&gt;\r\n<\/pre>\n<p><strong>CSS Code<\/strong>:<\/p>\n<pre class=\"brush: css; title: ; notranslate\" title=\"\">\r\n.container{font-size:14px; margin:0 auto; width:960px}\r\n.test_content{margin:10px 0;}\r\n.scroller_anchor{height:0px; margin:0; padding:0;}\r\n.scroller{background:#FFF; border:1px solid #CCC; margin:0 0 10px; z-index:100; height:50px; font-size:18px; font-weight:bold; text-align:center; width:960px;}\r\n<\/pre>\n<div>Here are the links to code and demo.<br \/>\n<a id=\"demo_link\" data-title=\"View Demo\" href=\"http:\/\/www.virendrachandak.com\/demos\/make-a-div-stick-to-top-when-scrolled-to.php\"><i class=\"icon fa fa-camera-retro\"><\/i> View Demo<\/a><br \/>\n<a id=\"source_link\" data-title=\"Download Source Code\" href=\"http:\/\/www.virendrachandak.com\/demos\/make-a-div-stick-to-top-when-scrolled-to.zip\"><i class=\"icon fa fa-download\"><\/i> Download Source Code<\/a>\n<\/div>\n<div>\nI have tested this on following browsers\/systems<\/p>\n<ul>\n<li>Internet Explorer 9 on Windows 7 Professional(64 bit)<\/li>\n<li>Internet Explorer 8 on Windows XP Professional<\/li>\n<li>Firefox 8.0.1 on Windows 7 Professional(64 bit) and Windows XP Professional<\/li>\n<li>Chrome 16 on Windows 7 Professional(64 bit) and Windows XP Professional<\/li>\n<li>Opera 11.50 on Windows XP Professional<\/li>\n<li>Safari 5.0.3 on Windows XP Professional<\/li>\n<\/ul>\n<\/div>\n<div>I have modified code of some answers from <a title=\"how can I make a div stick to the top of the screen once it's been scrolled to?\" href=\"http:\/\/stackoverflow.com\/questions\/1216114\/how-can-i-make-a-div-stick-to-the-top-of-the-screen-once-its-been-scrolled-to\" target=\"_blank\" rel=\"external nofollow\">Stackoverflow question<\/a> to work so that when the user scrolls below the bar&#8217;s original position the bar will stick to the top of the screen with changed CSS and when the user scrolls back up, the bar goes back to its original position and the CSS is changed back.<\/div>\n<div><span style=\"text-decoration:underline;\"><strong>Note<\/strong><\/span>: I do not take responsibility for proper functioning of the above mentioned steps under all circumstances. I am not responsible for any damages to your computer, website, blog, application or any thing else.<\/div>\n","protected":false},"excerpt":{"rendered":"<p>There are times when you would want to display a bar at the top of the page when user scrolls on the page and it should go back to its original position when the user scrolls back up. This is particularly useful when you want to add say a share bar, a search bar, etc [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[3,8],"tags":[9,39,11,55,56,124,84],"class_list":["post-631","post","type-post","status-publish","format-standard","hentry","category-functionality","category-web-development","tag-css","tag-html","tag-jquery","tag-scroll","tag-scroller","tag-snippets","tag-window-scroll"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Make a div stick to top when scrolled to - Virendra&#039;s TechTalk<\/title>\n<meta name=\"description\" content=\"There are times when you would want to display a bar at the top of the page when user scrolls on the page and it should go back to its original position\" \/>\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.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Make a div stick to top when scrolled to - Virendra&#039;s TechTalk\" \/>\n<meta property=\"og:description\" content=\"There are times when you would want to display a bar at the top of the page when user scrolls on the page and it should go back to its original position\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/\" \/>\n<meta property=\"og:site_name\" content=\"Virendra&#039;s TechTalk\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/virendrachandak\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/virendrachandak\" \/>\n<meta property=\"article:published_time\" content=\"2012-01-01T09:12:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2014-10-10T00:36:41+00:00\" \/>\n<meta name=\"author\" content=\"Virendra Chandak\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@virendrachandak\" \/>\n<meta name=\"twitter:site\" content=\"@virendrachandak\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Virendra Chandak\" \/>\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\":\"Article\",\"@id\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/make-a-div-stick-to-top-when-scrolled-to\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/make-a-div-stick-to-top-when-scrolled-to\\\/\"},\"author\":{\"name\":\"Virendra Chandak\",\"@id\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/#\\\/schema\\\/person\\\/63f7ffa1ea125e32af9618d188349e17\"},\"headline\":\"Make a div stick to top when scrolled to\",\"datePublished\":\"2012-01-01T09:12:55+00:00\",\"dateModified\":\"2014-10-10T00:36:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/make-a-div-stick-to-top-when-scrolled-to\\\/\"},\"wordCount\":884,\"commentCount\":31,\"publisher\":{\"@id\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/#\\\/schema\\\/person\\\/63f7ffa1ea125e32af9618d188349e17\"},\"keywords\":[\"CSS\",\"HTML\",\"jQuery\",\"Scroll\",\"scroller\",\"snippets\",\"window scroll\"],\"articleSection\":[\"Functionality\",\"Web Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/make-a-div-stick-to-top-when-scrolled-to\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/make-a-div-stick-to-top-when-scrolled-to\\\/\",\"url\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/make-a-div-stick-to-top-when-scrolled-to\\\/\",\"name\":\"Make a div stick to top when scrolled to - Virendra&#039;s TechTalk\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/#website\"},\"datePublished\":\"2012-01-01T09:12:55+00:00\",\"dateModified\":\"2014-10-10T00:36:41+00:00\",\"description\":\"There are times when you would want to display a bar at the top of the page when user scrolls on the page and it should go back to its original position\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/make-a-div-stick-to-top-when-scrolled-to\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/make-a-div-stick-to-top-when-scrolled-to\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/make-a-div-stick-to-top-when-scrolled-to\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"TechTalk\",\"item\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Functionality\",\"item\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/category\\\/functionality\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Make a div stick to top when scrolled to\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/#website\",\"url\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/\",\"name\":\"Virendra's TechTalk\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/#\\\/schema\\\/person\\\/63f7ffa1ea125e32af9618d188349e17\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/#\\\/schema\\\/person\\\/63f7ffa1ea125e32af9618d188349e17\",\"name\":\"Virendra Chandak\",\"logo\":{\"@id\":\"https:\\\/\\\/www.virendrachandak.com\\\/techtalk\\\/#\\\/schema\\\/person\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.virendrachandak.com\",\"https:\\\/\\\/www.facebook.com\\\/virendrachandak\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/virendrachandak\\\/\",\"https:\\\/\\\/x.com\\\/virendrachandak\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Make a div stick to top when scrolled to - Virendra&#039;s TechTalk","description":"There are times when you would want to display a bar at the top of the page when user scrolls on the page and it should go back to its original position","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.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/","og_locale":"en_US","og_type":"article","og_title":"Make a div stick to top when scrolled to - Virendra&#039;s TechTalk","og_description":"There are times when you would want to display a bar at the top of the page when user scrolls on the page and it should go back to its original position","og_url":"https:\/\/www.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/","og_site_name":"Virendra&#039;s TechTalk","article_publisher":"https:\/\/www.facebook.com\/virendrachandak","article_author":"https:\/\/www.facebook.com\/virendrachandak","article_published_time":"2012-01-01T09:12:55+00:00","article_modified_time":"2014-10-10T00:36:41+00:00","author":"Virendra Chandak","twitter_card":"summary_large_image","twitter_creator":"@virendrachandak","twitter_site":"@virendrachandak","twitter_misc":{"Written by":"Virendra Chandak","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/#article","isPartOf":{"@id":"https:\/\/www.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/"},"author":{"name":"Virendra Chandak","@id":"https:\/\/www.virendrachandak.com\/techtalk\/#\/schema\/person\/63f7ffa1ea125e32af9618d188349e17"},"headline":"Make a div stick to top when scrolled to","datePublished":"2012-01-01T09:12:55+00:00","dateModified":"2014-10-10T00:36:41+00:00","mainEntityOfPage":{"@id":"https:\/\/www.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/"},"wordCount":884,"commentCount":31,"publisher":{"@id":"https:\/\/www.virendrachandak.com\/techtalk\/#\/schema\/person\/63f7ffa1ea125e32af9618d188349e17"},"keywords":["CSS","HTML","jQuery","Scroll","scroller","snippets","window scroll"],"articleSection":["Functionality","Web Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/","url":"https:\/\/www.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/","name":"Make a div stick to top when scrolled to - Virendra&#039;s TechTalk","isPartOf":{"@id":"https:\/\/www.virendrachandak.com\/techtalk\/#website"},"datePublished":"2012-01-01T09:12:55+00:00","dateModified":"2014-10-10T00:36:41+00:00","description":"There are times when you would want to display a bar at the top of the page when user scrolls on the page and it should go back to its original position","breadcrumb":{"@id":"https:\/\/www.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.virendrachandak.com\/techtalk\/make-a-div-stick-to-top-when-scrolled-to\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"TechTalk","item":"https:\/\/www.virendrachandak.com\/techtalk\/"},{"@type":"ListItem","position":2,"name":"Functionality","item":"https:\/\/www.virendrachandak.com\/techtalk\/category\/functionality\/"},{"@type":"ListItem","position":3,"name":"Make a div stick to top when scrolled to"}]},{"@type":"WebSite","@id":"https:\/\/www.virendrachandak.com\/techtalk\/#website","url":"https:\/\/www.virendrachandak.com\/techtalk\/","name":"Virendra's TechTalk","description":"","publisher":{"@id":"https:\/\/www.virendrachandak.com\/techtalk\/#\/schema\/person\/63f7ffa1ea125e32af9618d188349e17"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.virendrachandak.com\/techtalk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.virendrachandak.com\/techtalk\/#\/schema\/person\/63f7ffa1ea125e32af9618d188349e17","name":"Virendra Chandak","logo":{"@id":"https:\/\/www.virendrachandak.com\/techtalk\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/www.virendrachandak.com","https:\/\/www.facebook.com\/virendrachandak","https:\/\/www.linkedin.com\/in\/virendrachandak\/","https:\/\/x.com\/virendrachandak"]}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p2vTtQ-ab","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.virendrachandak.com\/techtalk\/wp-json\/wp\/v2\/posts\/631","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.virendrachandak.com\/techtalk\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.virendrachandak.com\/techtalk\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.virendrachandak.com\/techtalk\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.virendrachandak.com\/techtalk\/wp-json\/wp\/v2\/comments?post=631"}],"version-history":[{"count":0,"href":"https:\/\/www.virendrachandak.com\/techtalk\/wp-json\/wp\/v2\/posts\/631\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.virendrachandak.com\/techtalk\/wp-json\/wp\/v2\/media?parent=631"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.virendrachandak.com\/techtalk\/wp-json\/wp\/v2\/categories?post=631"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.virendrachandak.com\/techtalk\/wp-json\/wp\/v2\/tags?post=631"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}