{"id":3292,"date":"2019-09-11T12:33:02","date_gmt":"2019-09-11T07:03:02","guid":{"rendered":"https:\/\/www.sanjaywebdesigner.com\/articles\/?p=3292"},"modified":"2019-09-11T12:33:02","modified_gmt":"2019-09-11T07:03:02","slug":"simple-jquery-responsive-dropdown-menu-step-by-step","status":"publish","type":"post","link":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/","title":{"rendered":"Simple Jquery Responsive Dropdown Menu Step By Step"},"content":{"rendered":"<div class=\"4b5c905834746893f548144bd2becc18\" data-index=\"1\" style=\"float: none; margin:10px 0 10px 0; text-align:center;\">\n<script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script>\r\n<!-- blog last -->\r\n<ins class=\"adsbygoogle\"\r\n     style=\"display:inline-block;width:336px;height:280px\"\r\n     data-ad-client=\"ca-pub-8831529092902674\"\r\n     data-ad-slot=\"8814291746\"><\/ins>\r\n<script>\r\n(adsbygoogle = window.adsbygoogle || []).push({});\r\n<\/script>\n<\/div>\n<h1>Simple Jquery Responsive Dropdown Menu Step By Step<\/h1>\n<p><a href=\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3294\" src=\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi.jpg\" alt=\"simple-jquery-responsive-dropdown-menu-step-by-step-delhi\" width=\"629\" height=\"372\" srcset=\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi.jpg 629w, https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi-300x177.jpg 300w\" sizes=\"auto, (max-width: 629px) 100vw, 629px\" \/><\/a><\/p>\n<p>HTML CODE<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;!DOCTYPE html&gt;\r\n&lt;html lang=\"en\"&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=\"UTF-8\"&gt;\r\n&lt;title&gt;jQuery Move DIV Element with Arrow Keys&lt;\/title&gt;\r\n&lt;meta name=\"viewport\" content= \"width=device-width, initial-scale=1.0\"&gt;\r\n  &lt;script src=\"jquery-3.4.1.min.js\"&gt;&lt;\/script&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n   &lt;div class=\"s1\"&gt;\r\n  &lt;div class=\"d1\"&gt;\r\n     \r\n     &lt;div class=\"a1\"&gt;Home&lt;\/div&gt;\r\n    &lt;div class=\"a1\"&gt;Contact&lt;\/div&gt;\r\n    &lt;div class=\"a1\"&gt;About&lt;\/div&gt;\r\n    &lt;div class=\"a1\"&gt;Blog&lt;\/div&gt;\r\n     &lt;\/div&gt;\r\n   &lt;div class=\"d2\"&gt;\r\n     &lt;div class=\"c1\"&gt;&lt;\/div&gt;\r\n     &lt;div class=\"bb\"&gt;\r\n     &lt;div class=\"b1\"&gt;Home&lt;\/div&gt;\r\n    &lt;div class=\"b1\"&gt;Contact&lt;\/div&gt;\r\n    &lt;div class=\"b1\"&gt;About&lt;\/div&gt;\r\n    &lt;div class=\"b1\"&gt;Blog&lt;\/div&gt;\r\n     &lt;\/div&gt;\r\n     &lt;\/div&gt;\r\n  &lt;\/div&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>CSS CODE<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">body{\r\n    margin:0;\r\n    padding:0;\r\n  }\r\n  .s1{width:100%;\r\n    height:50px;\r\n  }\r\n  .d1{width:100%;\r\n    height:50px;\r\n    float:left;\r\n    display:block;\r\n    background-color:red;\r\n  }\r\n  .d2{width:100%;\r\n    height:50px;\r\n    float:left;\r\n    display:none;\r\n    background-color:green;\r\n    position:relative;\r\n  }\r\n  .a1{\r\n    width:calc( 25% - 2px);\r\n    height:48px;\r\n    background-color:blue;\r\n    float:left;\r\n    border:1px solid black;\r\n  }\r\n  .bb{\r\n    width:100%;\r\n    height:204px;\r\n    position:absolute;\r\n    top:50px;\r\n    left:0;\r\n    display:none;\r\n  }\r\n  .b1{\r\n    width:100%;\r\n    height:50px;\r\n    margin-bottom:1px;\r\n    background-color:pink;\r\n  }\r\n  .c1{\r\n    width:40px;\r\n    height:40px;\r\n    margin-left:20px;\r\n    margin-top:5px;\r\n    background-color:red;\r\n  }\r\n  @media (max-width:769px)\r\n  {\r\n    .d1{\r\n    display:none;\r\n    \r\n  }\r\n  .d2{\r\n    display:block;\r\n    \r\n  }\r\n  }<\/pre>\n<p>JAVASCRIPT CODE<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$(\".c1\").click(function()\r\n          {\r\n    $(\".bb\").slideToggle(1000);\r\n  });<\/pre>\n<p>&nbsp;<\/p>\n\n<div style=\"font-size: 0px; height: 0px; line-height: 0px; margin: 0; padding: 0; clear: both;\"><\/div>","protected":false},"excerpt":{"rendered":"<p>Simple Jquery Responsive Dropdown Menu Step By Step HTML CODE &lt;!DOCTYPE html&gt; &lt;html lang=&#8221;en&#8221;&gt; &lt;head&gt; &lt;meta charset=&#8221;UTF-8&#8243;&gt; &lt;title&gt;jQuery Move DIV Element with Arrow Keys&lt;\/title&gt; &lt;meta name=&#8221;viewport&#8221; content= &#8220;width=device-width, initial-scale=1.0&#8243;&gt; &lt;script src=&#8221;jquery-3.4.1.min.js&#8221;&gt;&lt;\/script&gt; &lt;\/head&gt; &lt;body&gt; &lt;div class=&#8221;s1&#8243;&gt; &lt;div class=&#8221;d1&#8243;&gt; &lt;div class=&#8221;a1&#8243;&gt;Home&lt;\/div&gt; &lt;div class=&#8221;a1&#8243;&gt;Contact&lt;\/div&gt; &lt;div class=&#8221;a1&#8243;&gt;About&lt;\/div&gt; &lt;div class=&#8221;a1&#8243;&gt;Blog&lt;\/div&gt; &lt;\/div&gt; &lt;div class=&#8221;d2&#8243;&gt; &lt;div class=&#8221;c1&#8243;&gt;&lt;\/div&gt; &lt;div class=&#8221;bb&#8221;&gt; &lt;div class=&#8221;b1&#8243;&gt;Home&lt;\/div&gt; &lt;div [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":3294,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[401,1076],"tags":[1121,1120],"class_list":["post-3292","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-jquery-2","category-web-development-tutorials","tag-simple-jquery-responsive-dropdown-menu-step-by-step","tag-simple-jquery-responsive-dropdown-menu-step-by-step-in-delhi"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Simple Jquery Responsive Dropdown Menu Step By Step in Delhi<\/title>\n<meta name=\"description\" content=\"Simple Jquery Responsive Dropdown Menu Step By Step in Delhi\" \/>\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.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Simple Jquery Responsive Dropdown Menu Step By Step in Delhi\" \/>\n<meta property=\"og:description\" content=\"Simple Jquery Responsive Dropdown Menu Step By Step in Delhi\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/\" \/>\n<meta property=\"og:site_name\" content=\"Sanjay Web Designer\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/sanjaywebdesigner\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-11T07:03:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"629\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Sanjay Jain\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@sanjaywebdesign\" \/>\n<meta name=\"twitter:site\" content=\"@sanjaywebdesign\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sanjay Jain\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/\"},\"author\":{\"name\":\"Sanjay Jain\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/7013e58aaefa0607a58fdb91888de833\"},\"headline\":\"Simple Jquery Responsive Dropdown Menu Step By Step\",\"datePublished\":\"2019-09-11T07:03:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/\"},\"wordCount\":23,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi.jpg\",\"keywords\":[\"Simple Jquery Responsive Dropdown Menu Step By Step\",\"Simple Jquery Responsive Dropdown Menu Step By Step in Delhi\"],\"articleSection\":[\"Jquery\",\"Web Development Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/\",\"name\":\"Simple Jquery Responsive Dropdown Menu Step By Step in Delhi\",\"isPartOf\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi.jpg\",\"datePublished\":\"2019-09-11T07:03:02+00:00\",\"description\":\"Simple Jquery Responsive Dropdown Menu Step By Step in Delhi\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/#primaryimage\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi.jpg\",\"contentUrl\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi.jpg\",\"width\":629,\"height\":372,\"caption\":\"simple-jquery-responsive-dropdown-menu-step-by-step-delhi\"},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#website\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/\",\"name\":\"Sanjay Web Designer\",\"description\":\"Learn Web Designing &amp; Graphic Designing in Depth\",\"publisher\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization\",\"name\":\"Sanjay Web Designer\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2021\/08\/cropped-footer-logo-1.png\",\"contentUrl\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2021\/08\/cropped-footer-logo-1.png\",\"width\":240,\"height\":72,\"caption\":\"Sanjay Web Designer\"},\"image\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/sanjaywebdesigner\",\"https:\/\/x.com\/sanjaywebdesign\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/7013e58aaefa0607a58fdb91888de833\",\"name\":\"Sanjay Jain\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/661807705d23debee3ca86318320b24f983b9ef8a34301cf6e40545f1d6d25db?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/661807705d23debee3ca86318320b24f983b9ef8a34301cf6e40545f1d6d25db?s=96&d=mm&r=g\",\"caption\":\"Sanjay Jain\"},\"sameAs\":[\"http:\/\/www.sanjaywebdesigner.com\/\"],\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/author\/sanjay\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Simple Jquery Responsive Dropdown Menu Step By Step in Delhi","description":"Simple Jquery Responsive Dropdown Menu Step By Step in Delhi","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.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/","og_locale":"en_US","og_type":"article","og_title":"Simple Jquery Responsive Dropdown Menu Step By Step in Delhi","og_description":"Simple Jquery Responsive Dropdown Menu Step By Step in Delhi","og_url":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/","og_site_name":"Sanjay Web Designer","article_publisher":"https:\/\/www.facebook.com\/sanjaywebdesigner","article_published_time":"2019-09-11T07:03:02+00:00","og_image":[{"width":629,"height":372,"url":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi.jpg","type":"image\/jpeg"}],"author":"Sanjay Jain","twitter_card":"summary_large_image","twitter_creator":"@sanjaywebdesign","twitter_site":"@sanjaywebdesign","twitter_misc":{"Written by":"Sanjay Jain","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/#article","isPartOf":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/"},"author":{"name":"Sanjay Jain","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/7013e58aaefa0607a58fdb91888de833"},"headline":"Simple Jquery Responsive Dropdown Menu Step By Step","datePublished":"2019-09-11T07:03:02+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/"},"wordCount":23,"commentCount":0,"publisher":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization"},"image":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi.jpg","keywords":["Simple Jquery Responsive Dropdown Menu Step By Step","Simple Jquery Responsive Dropdown Menu Step By Step in Delhi"],"articleSection":["Jquery","Web Development Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/","name":"Simple Jquery Responsive Dropdown Menu Step By Step in Delhi","isPartOf":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/#primaryimage"},"image":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi.jpg","datePublished":"2019-09-11T07:03:02+00:00","description":"Simple Jquery Responsive Dropdown Menu Step By Step in Delhi","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-jquery-responsive-dropdown-menu-step-by-step\/#primaryimage","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi.jpg","contentUrl":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/09\/simple-jquery-responsive-dropdown-menu-step-by-step-delhi.jpg","width":629,"height":372,"caption":"simple-jquery-responsive-dropdown-menu-step-by-step-delhi"},{"@type":"WebSite","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#website","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/","name":"Sanjay Web Designer","description":"Learn Web Designing &amp; Graphic Designing in Depth","publisher":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sanjaywebdesigner.com\/articles\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization","name":"Sanjay Web Designer","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/logo\/image\/","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2021\/08\/cropped-footer-logo-1.png","contentUrl":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2021\/08\/cropped-footer-logo-1.png","width":240,"height":72,"caption":"Sanjay Web Designer"},"image":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/sanjaywebdesigner","https:\/\/x.com\/sanjaywebdesign"]},{"@type":"Person","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/7013e58aaefa0607a58fdb91888de833","name":"Sanjay Jain","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/661807705d23debee3ca86318320b24f983b9ef8a34301cf6e40545f1d6d25db?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/661807705d23debee3ca86318320b24f983b9ef8a34301cf6e40545f1d6d25db?s=96&d=mm&r=g","caption":"Sanjay Jain"},"sameAs":["http:\/\/www.sanjaywebdesigner.com\/"],"url":"https:\/\/www.sanjaywebdesigner.com\/articles\/author\/sanjay\/"}]}},"_links":{"self":[{"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/posts\/3292","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/comments?post=3292"}],"version-history":[{"count":0,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/posts\/3292\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/media\/3294"}],"wp:attachment":[{"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/media?parent=3292"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/categories?post=3292"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/tags?post=3292"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}