{"id":5395,"date":"2021-12-27T04:50:46","date_gmt":"2021-12-27T04:50:46","guid":{"rendered":"https:\/\/studysection.com\/blog\/?p=5395"},"modified":"2021-12-27T06:05:10","modified_gmt":"2021-12-27T06:05:10","slug":"drag-drop-in-html-with-jquery","status":"publish","type":"post","link":"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/","title":{"rendered":"Drag &#038; Drop in HTML with jquery"},"content":{"rendered":"<p>HTML helps you in creating your own drag and drop options in dragging and dropping different widgets on the screen with <a href=\"https:\/\/studysection.com\/blog\/difference-between-jquery-and-react-js\/\">jquery<\/a> as you want your website to look. So here is HTML code for making without wasting too much time and extra coding.<\/p>\n<h2>HTML<\/h2>\n<p><code>&lt;!DOCTYPE html><br \/>\n&lt;html lang=\"en\"><br \/>\n&lt;head><br \/>\n  &lt;title>Draggable Form&lt;\/title><br \/>\n &lt;meta charset=\"utf-8\"><br \/>\n  &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"><br \/>\n  &lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/twitter-bootstrap\/3.3.7\/css\/bootstrap.min.css\"><br \/>\n  &lt;link rel=\"stylesheet\" href=\"https:\/\/stackpath.bootstrapcdn.com\/font-awesome\/4.7.0\/css\/font-awesome.min.css\" crossorigin=\"anonymous\" \/><br \/>\n   &lt;link rel=\"stylesheet\" href=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jqueryui\/1.11.2\/themes\/smoothness\/jquery-ui.css\"><br \/>\n  &lt;link rel=\"stylesheet\" href=\"css\/dragSec.css\"><br \/>\n&lt;\/head><br \/>\n&lt;body><br \/>\n  &lt;div class=\"row nomrgn\" ><br \/>\n    &lt;div class=\"col-sm-3 nopadd h-100\"><br \/>\n      &lt;div id=\"modules\" class=\" col-sm-12 drag-field nopadd\"><br \/>\n        &lt;p class=\"drag col-sm-6\">&lt;a class=\"btn btn-default\">Text&lt;\/a>&lt;\/p><br \/>\n        &lt;p class=\"drag col-sm-6\">&lt;a class=\"btn btn-default\">Textarea&lt;\/a>&lt;\/p><br \/>\n        &lt;p class=\"drag col-sm-6\">&lt;a class=\"btn btn-default\">Email&lt;\/a>&lt;\/p><br \/>\n        &lt;p class=\"drag col-sm-6\">&lt;a class=\"btn btn-default\">Radio Button&lt;\/a>&lt;\/p><br \/>\n      &lt;\/div><br \/>\n  &lt;\/div><br \/>\n    &lt;div class=\"col-sm-9 nopadd h-100\"><br \/>\n      &lt;div id=\"dropzone\" class=\"col-sm-6\" style=\"background:#f2f2f2;\">&lt;\/div><br \/>\n\t  &lt;div id=\"dropzone1\" class=\"col-sm-6\">&lt;\/div><br \/>\n    &lt;\/div><br \/>\n  &lt;\/div><\/p>\n<p>  &lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jquery\/3.1.0\/jquery.min.js\">&lt;\/script><br \/>\n  &lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jqueryui\/1.12.0\/jquery-ui.min.js\">&lt;\/script><br \/>\n  &lt;script src=\"https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.4.1\/js\/bootstrap.min.js\">&lt;\/script><br \/>\n  &lt;script src=\"js\/dragSec.js\">&lt;\/script><br \/>\n&lt;\/body><br \/>\n&lt;\/html><br \/>\n<\/code><\/p>\n<h3>CSS<\/h3>\n<p><code>body, html, .row, .h-100, #modules, #dropzone{<br \/>\n\theight:100%;<br \/>\n}<br \/>\n.nomrgn{<br \/>\n\tmargin-left:0px !important;<br \/>\n\tmargin-right:0px !important;<br \/>\n}<br \/>\n.nopadd{<br \/>\n\tpadding:0px !important;<br \/>\n}<br \/>\n#modules {<br \/>\n  background: #eee;<br \/>\n  z-index: 1;<br \/>\n}<br \/>\n.drag-field {<br \/>\n\tpadding-top: 15px !important;<br \/>\n}<br \/>\n.drag-field a{<br \/>\n\twidth:100%;<br \/>\n}<br \/>\n#dropzone {<br \/>\n  padding: 20px;<br \/>\n  background: #fff;<br \/>\n  z-index: 0;<br \/>\n}<br \/>\n.active {<br \/>\n  outline: 1px solid red;<br \/>\n}<br \/>\n.hover {<br \/>\n  outline: 1px solid blue;<br \/>\n}<br \/>\n.drop-item .remove {<br \/>\n\tdisplay: none;<br \/>\n}<br \/>\n.drop-item:hover .remove {<br \/>\n\tdisplay: inherit;<br \/>\n}<br \/>\n.remove {<br \/>\n\tbackground: no-repeat;<br \/>\n\tborder: none;<br \/>\n\tfont-size: 11px;<br \/>\n\tcolor: red;<br \/>\n}<br \/>\n.drop-item {<br \/>\n  cursor: move;<br \/>\n  margin-bottom: 10px;<br \/>\n  background-color: rgb(255, 255, 255);<br \/>\n  padding:20px;<br \/>\n  border: 1px solid rgb(204, 204, 204);<br \/>\n  position: relative;<br \/>\n}<br \/>\n.drop-item p {<br \/>\n\tcursor: pointer;<br \/>\n\tmargin: 0;<br \/>\n}<br \/>\n.drop-item .remove {<br \/>\n  position: absolute;<br \/>\n  top: 4px;<br \/>\n  right: 4px;<br \/>\n}<\/code><\/p>\n<h3>Jquery Code:<\/h3>\n<p><code>$('.drag').draggable({<br \/>\n  appendTo: 'body',<br \/>\n  helper: 'clone'<br \/>\n});<br \/>\n$('#dropzone').droppable({<br \/>\n  activeClass: 'active',<br \/>\n  hoverClass: 'hover',<br \/>\n  accept: \":not(.ui-sortable-helper)\", \/\/ Reject clones generated by sortable<br \/>\n  drop: function (e, ui) {<br \/>\n\t  if(ui.draggable.text()==\"Textarea\")<br \/>\n\t  {<br \/>\n\t\tvar $el = $('&lt;div class=\"drop-item form-group\">&lt;label>&lt;p onclick=\"editLabel(this)\">' + ui.draggable.text() + '&lt;\/p>&lt;input type=\"text\" value=\"\" name=\"\" class=\"edit\" id=\"edit\" style=\"display: none;\">&lt;\/label>&lt;textarea class=\"form-control\"\/>&lt;\/div>');<br \/>\n\t\t$el.append($('&lt;button type=\"button\" class=\"remove\">&lt;span class=\"glyphicon glyphicon-trash\">&lt;\/span>&lt;\/button>').click(function () { $(this).parent().detach(); }));<br \/>\n\t\t$(this).append($el);<br \/>\n\t  }<br \/>\n\t  else if(ui.draggable.text()==\"Email\")<br \/>\n\t  {<br \/>\n\t\tvar $el = $('&lt;div class=\"drop-item form-group\">&lt;label>&lt;p onclick=\"editLabel(this)\">' + ui.draggable.text() + '&lt;\/p>&lt;input type=\"text\" value=\"\" name=\"\" class=\"edit\" id=\"edit\" style=\"display: none;\">&lt;\/label>&lt;input class=\"form-control\" type=\"email\" \/>&lt;\/div>');<br \/>\n\t\t$el.append($('&lt;button type=\"button\" class=\"remove\">&lt;span class=\"glyphicon glyphicon-trash\">&lt;\/span>&lt;\/button>').click(function () { $(this).parent().detach(); }));<br \/>\n\t\t$(this).append($el);<br \/>\n\t  }<br \/>\n\t  else if(ui.draggable.text()==\"Radio Button\")<br \/>\n\t  {<br \/>\n\t\tvar $el = $('&lt;div class=\"drop-item form-group\">&lt;label>&lt;p onclick=\"editLabel(this)\">' + ui.draggable.text() + '&lt;\/p>&lt;input type=\"text\" value=\"\" name=\"\" class=\"edit\" id=\"edit\" style=\"display: none;\">&lt;\/label>&lt;div class=\"radio\">&lt;label>&lt;input type=\"radio\" name=\"optradio\" checked>Option 1&lt;\/label>&lt;\/div>&lt;\/div>');<br \/>\n\t\t$el.append($('&lt;button type=\"button\" class=\"remove\">&lt;span class=\"glyphicon glyphicon-trash\">&lt;\/span>&lt;\/button>').click(function () { $(this).parent().detach(); }));<br \/>\n\t\t$(this).append($el);<br \/>\n\t  }<br \/>\n\t  else<br \/>\n\t  {<br \/>\n\t\tvar $el = $('&lt;div class=\"drop-item form-group\">&lt;label>&lt;p onclick=\"editLabel(this)\">' + ui.draggable.text() + '&lt;\/p>&lt;input type=\"text\" value=\"\" name=\"\" class=\"edit\" id=\"edit\" style=\"display: none;\">&lt;\/label>&lt;input class=\"form-control\" type=\"text\" \/>&lt;\/div>');<br \/>\n\t\t$el.append($('&lt;button type=\"button\" class=\"remove\">&lt;span class=\"glyphicon glyphicon-trash\">&lt;\/span>&lt;\/button>').click(function () { $(this).parent().detach(); }));<br \/>\n\t\t$(this).append($el);<br \/>\n\t  }<br \/>\n  }<br \/>\n}).sortable({<br \/>\n  items: '.drop-item',<br \/>\n  sort: function() {<br \/>\n    $( this ).removeClass( \"active\" );<br \/>\n  }<br \/>\n});<br \/>\nfunction editLabel(elm) {<br \/>\n\tvar jelm = $(elm);<br \/>\n\tvar htmlElm = jelm[0];<br \/>\n\t$(htmlElm).hide();<br \/>\n\t$(htmlElm).siblings('.edit').show();<br \/>\n\t$(htmlElm).siblings('.edit').focus()<br \/>\n\tvar initial_text = $(htmlElm).text();<br \/>\n\t$(htmlElm).siblings('.edit').focusout(function () {<br \/>\n\t\tvar editedInput = $(htmlElm).siblings('.edit').val();<br \/>\n\t\t$(htmlElm).siblings('.edit').hide();<br \/>\n\t\tif(editedInput != ''){<br \/>\n\t\t\t$(htmlElm).show().text(editedInput);<br \/>\n\t\t}<br \/>\n\t\telse{<br \/>\n\t\t\t$(htmlElm).show().text(initial_text);<br \/>\n\t\t} });}<\/code><\/p>\n<h3>ScreenShot:<\/h3>\n<p><img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/12\/drag.png\" alt=\"drag\"\/><br \/>\n<img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/12\/drag1.png\" alt=\"drag1\"\/><\/p>\n<h3>Drag-and-drop widgets let you easily:<\/h3>\n<ul>\n<li>Reorder existing elements of your page as you see fit.<\/li>\n<li>Add new elements to a page that didn\u2019t previously exist.<\/li>\n<li>Edit how existing elements of your page appear.<\/li>\n<\/ul>\n<p>Overall, drag-and-drop widgets editing puts you in control of your content.<\/p>\n<p><small>The English language is the most widely used language as a medium of communication around the world. Having a certification for the English language can be an advantage. StudySection provides an <a href=\"https:\/\/www.studysection.com\/english-language-advanced-diploma\">English Certification Exam<\/a> that tests English language proficiency in English grammar, reading, and writing.<\/small><\/p>\n","protected":false},"excerpt":{"rendered":"<p>HTML helps you in creating your own drag and drop options in dragging and dropping different widgets on the screen<\/p>\n","protected":false},"author":1,"featured_media":5396,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[201,170],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Drag &amp; Drop in HTML with jquery - StudySection Blog<\/title>\n<meta name=\"description\" content=\"HTML helps you in creating your own drag and drop options in drag &amp; drop different widgets on the screen as you want your website to look.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Drag &amp; Drop in HTML with jquery - StudySection Blog\" \/>\n<meta property=\"og:description\" content=\"HTML helps you in creating your own drag and drop options in drag &amp; drop different widgets on the screen as you want your website to look.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog Posts on famous people, innovations and educational topics\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/studysection\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-27T04:50:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-27T06:05:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/12\/jquery.png\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin-studysection-blog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@studysection\" \/>\n<meta name=\"twitter:site\" content=\"@studysection\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin-studysection-blog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/\"},\"author\":{\"name\":\"admin-studysection-blog\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\"},\"headline\":\"Drag &#038; Drop in HTML with jquery\",\"datePublished\":\"2021-12-27T04:50:46+00:00\",\"dateModified\":\"2021-12-27T06:05:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/\"},\"wordCount\":145,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"keywords\":[\"html\",\"Jquery\"],\"articleSection\":[\"Learn and Grow\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/\",\"url\":\"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/\",\"name\":\"Drag & Drop in HTML with jquery - StudySection Blog\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/#website\"},\"datePublished\":\"2021-12-27T04:50:46+00:00\",\"dateModified\":\"2021-12-27T06:05:10+00:00\",\"description\":\"HTML helps you in creating your own drag and drop options in drag & drop different widgets on the screen as you want your website to look.\",\"breadcrumb\":{\"@id\":\"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/studysection.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Drag &#038; Drop in HTML with jquery\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/studysection.com\/blog\/#website\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"name\":\"Blog Posts on famous people, innovations and educational topics\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/studysection.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/studysection.com\/blog\/#organization\",\"name\":\"StudySection\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"contentUrl\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"width\":920,\"height\":440,\"caption\":\"StudySection\"},\"image\":{\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/studysection\",\"https:\/\/twitter.com\/studysection\",\"https:\/\/www.instagram.com\/study.section\/\",\"https:\/\/www.linkedin.com\/company\/studysection\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\",\"name\":\"admin-studysection-blog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"caption\":\"admin-studysection-blog\"},\"url\":\"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Drag & Drop in HTML with jquery - StudySection Blog","description":"HTML helps you in creating your own drag and drop options in drag & drop different widgets on the screen as you want your website to look.","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:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/","og_locale":"en_US","og_type":"article","og_title":"Drag & Drop in HTML with jquery - StudySection Blog","og_description":"HTML helps you in creating your own drag and drop options in drag & drop different widgets on the screen as you want your website to look.","og_url":"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/","og_site_name":"Blog Posts on famous people, innovations and educational topics","article_publisher":"https:\/\/www.facebook.com\/studysection","article_published_time":"2021-12-27T04:50:46+00:00","article_modified_time":"2021-12-27T06:05:10+00:00","og_image":[{"width":300,"height":200,"url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/12\/jquery.png","type":"image\/png"}],"author":"admin-studysection-blog","twitter_card":"summary_large_image","twitter_creator":"@studysection","twitter_site":"@studysection","twitter_misc":{"Written by":"admin-studysection-blog","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/#article","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/"},"author":{"name":"admin-studysection-blog","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402"},"headline":"Drag &#038; Drop in HTML with jquery","datePublished":"2021-12-27T04:50:46+00:00","dateModified":"2021-12-27T06:05:10+00:00","mainEntityOfPage":{"@id":"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/"},"wordCount":145,"commentCount":0,"publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"keywords":["html","Jquery"],"articleSection":["Learn and Grow"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/","url":"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/","name":"Drag & Drop in HTML with jquery - StudySection Blog","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/#website"},"datePublished":"2021-12-27T04:50:46+00:00","dateModified":"2021-12-27T06:05:10+00:00","description":"HTML helps you in creating your own drag and drop options in drag & drop different widgets on the screen as you want your website to look.","breadcrumb":{"@id":"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/studysection.com\/blog\/drag-drop-in-html-with-jquery\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/studysection.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Drag &#038; Drop in HTML with jquery"}]},{"@type":"WebSite","@id":"https:\/\/studysection.com\/blog\/#website","url":"https:\/\/studysection.com\/blog\/","name":"Blog Posts on famous people, innovations and educational topics","description":"","publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/studysection.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/studysection.com\/blog\/#organization","name":"StudySection","url":"https:\/\/studysection.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","contentUrl":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","width":920,"height":440,"caption":"StudySection"},"image":{"@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/studysection","https:\/\/twitter.com\/studysection","https:\/\/www.instagram.com\/study.section\/","https:\/\/www.linkedin.com\/company\/studysection"]},{"@type":"Person","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402","name":"admin-studysection-blog","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","caption":"admin-studysection-blog"},"url":"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/"}]}},"views":3391,"_links":{"self":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/5395"}],"collection":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/comments?post=5395"}],"version-history":[{"count":6,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/5395\/revisions"}],"predecessor-version":[{"id":5402,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/5395\/revisions\/5402"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media\/5396"}],"wp:attachment":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media?parent=5395"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/categories?post=5395"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/tags?post=5395"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}