{"id":6355,"date":"2024-01-11T16:40:00","date_gmt":"2024-01-11T16:40:00","guid":{"rendered":"https:\/\/codehim.com\/?p=6355"},"modified":"2024-01-22T14:44:18","modified_gmt":"2024-01-22T09:44:18","slug":"javascript-popup-enlarge-image-onclick","status":"publish","type":"post","link":"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/","title":{"rendered":"Enlarge\/Zoom Image Onclick JavaScript Popup"},"content":{"rendered":"<p>This JavaScript plugin helps you to create a popup enlarge image onclick event. It comes with smooth animations with intuitive gestures. Basically, it picks images from content\/article and zooms into a hi-res image. Moreover, the zooming speed, background overlay, and image grab can be customized with plugin options.<\/p>\n<h2>How to Create JavaScript Popup Enlarge Image onclick<\/h2>\n<p>1. First of all, place your images with data-action=&#8221;zoom&#8221; and data-original attributes. Define the src attribute for the image thumbnail and data-original for a full-size image that will be loaded when clicked on the thumbnail.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"container\"&gt;\r\n  &lt;section class=\"header\"&gt;\r\n    &lt;h2&gt;Zooming&lt;\/h2&gt;\r\n\r\n    &lt;div class=\"value-img\"&gt;\r\n      &lt;img src=\"https:\/\/s3-us-west-2.amazonaws.com\/s.cdpn.io\/3\/journey_start_thumbnail.jpg\" data-action=\"zoom\" data-original=\"https:\/\/s3-us-west-2.amazonaws.com\/s.cdpn.io\/3\/journey_start.jpg\" alt=\"journey_start_thumbnail\" \/&gt;\r\n    &lt;\/div&gt;\r\n  &lt;\/section&gt;\r\n\r\n  &lt;section class=\"content\"&gt;\r\n    &lt;div class=\"value-img\"&gt;\r\n      &lt;img src=\"https:\/\/s3-us-west-2.amazonaws.com\/s.cdpn.io\/3\/journey_thumbnail.jpg\" data-action=\"zoom\" data-original=\"https:\/\/s3-us-west-2.amazonaws.com\/s.cdpn.io\/3\/journey.jpg\" alt=\"journey_thumbnail\" \/&gt;\r\n    &lt;\/div&gt;\r\n  &lt;\/section&gt;\r\n&lt;\/div&gt; \r\n<\/pre>\n<p>2. After that, add the following CSS styles to your project:<\/p>\n<pre class=\"prettyprint linenums lang-css\">.container {\r\n  max-width: 600px;\r\n}\r\n\r\nsection.header {\r\n  margin-top: 4rem;\r\n  text-align: center;\r\n}\r\n\r\nsection.content {\r\n  text-align: center;\r\n}\r\n\r\n.value-img {\r\n  display: block;\r\n  text-align: center;\r\n  margin: 2em 0;\r\n}\r\n\r\nimg {\r\n  max-width: 100%;\r\n}\r\n\r\n@media (min-width: 550px) {\r\n  .header {\r\n    margin-top: 10rem;\r\n  }\r\n}\r\n\r\n.button.button-primary {\r\n  background-color: #ce7338 !important;\r\n  border-color: #ce7338 !important;\r\n}<\/pre>\n<p>3. Finally, add the following JavaScript code and done.<\/p>\n<pre class=\"prettyprint linenums lang-js\">\/* eslint-disable *\/\r\n\r\nvar config = Zooming.config(),\r\nTRANSITION_DURATION_DEFAULT = config.transitionDuration,\r\nTRANSITION_DURATION_SLOW = 1.0,\r\nTRANSITION_DURATION_FAST = 0.2,\r\nBG_COLOR_DEFAULT = config.bgColor,\r\nBG_COLOR_DARK = '#000',\r\nENABLE_GRAB_DEFAULT = config.enableGrab,\r\nACTIVE_CLASS = 'button-primary',\r\n\r\nbtnFast = document.getElementById('btn-fast'),\r\nbtnSlow = document.getElementById('btn-slow'),\r\nbtnDark = document.getElementById('btn-dark'),\r\nbtnNoGrab = document.getElementById('btn-no-grab');\r\n\r\nfunction isActive(el) {\r\n  return el.classList.contains(ACTIVE_CLASS);\r\n}\r\n\r\nfunction activate(el) {\r\n  el.classList.add(ACTIVE_CLASS);\r\n}\r\n\r\nfunction deactivate(el) {\r\n  el.classList.remove(ACTIVE_CLASS);\r\n}\r\n\r\nfunction fast() {\r\n  var t;\r\n  if (isActive(btnFast)) {\r\n    t = TRANSITION_DURATION_DEFAULT;\r\n    deactivate(btnFast);\r\n  } else {\r\n    t = TRANSITION_DURATION_FAST;\r\n    activate(btnFast);\r\n    deactivate(btnSlow);\r\n  }\r\n\r\n  Zooming.config({ transitionDuration: t });\r\n}\r\n\r\nfunction slow() {\r\n  var t;\r\n  if (isActive(btnSlow)) {\r\n    t = TRANSITION_DURATION_DEFAULT;\r\n    deactivate(btnSlow);\r\n  } else {\r\n    t = TRANSITION_DURATION_SLOW;\r\n    activate(btnSlow);\r\n    deactivate(btnFast);\r\n  }\r\n\r\n  Zooming.config({ transitionDuration: t });\r\n}\r\n\r\nfunction dark() {\r\n  var c;\r\n  if (isActive(btnDark)) {\r\n    c = BG_COLOR_DEFAULT;\r\n    deactivate(btnDark);\r\n  } else {\r\n    c = BG_COLOR_DARK;\r\n    activate(btnDark);\r\n  }\r\n\r\n  Zooming.config({ bgColor: c });\r\n}\r\n\r\nfunction noGrab() {\r\n  var enable;\r\n  if (isActive(btnNoGrab)) {\r\n    enable = ENABLE_GRAB_DEFAULT;\r\n    deactivate(btnNoGrab);\r\n  } else {\r\n    enable = !ENABLE_GRAB_DEFAULT;\r\n    activate(btnNoGrab);\r\n  }\r\n\r\n  Zooming.config({ enableGrab: enable });\r\n}<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully integrated this popup enlarge image code snippet into your project. If you have any questions or facing any issues, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This JavaScript plugin helps you to create a popup enlarge image onclick event. It comes with smooth animations with intuitive&#8230;<\/p>\n","protected":false},"author":1,"featured_media":6362,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[50],"tags":[],"class_list":["post-6355","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-zoom"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Enlarge\/Zoom Image Onclick JavaScript Popup &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a lightweight JavaScript code snippet to create popup enlarge image onclick event. You can view demo and download code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Enlarge\/Zoom Image Onclick JavaScript Popup &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a lightweight JavaScript code snippet to create popup enlarge image onclick event. You can view demo and download code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-11T16:40:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T09:44:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/www.codehim-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"960\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\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:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Enlarge\/Zoom Image Onclick JavaScript Popup\",\"datePublished\":\"2024-01-11T16:40:00+00:00\",\"dateModified\":\"2024-01-22T09:44:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/\"},\"wordCount\":147,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/www.codehim-1.png\",\"articleSection\":[\"Zoom\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/\",\"url\":\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/\",\"name\":\"Enlarge\/Zoom Image Onclick JavaScript Popup &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/www.codehim-1.png\",\"datePublished\":\"2024-01-11T16:40:00+00:00\",\"dateModified\":\"2024-01-22T09:44:18+00:00\",\"description\":\"Here is a lightweight JavaScript code snippet to create popup enlarge image onclick event. You can view demo and download code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/www.codehim-1.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/www.codehim-1.png\",\"width\":1280,\"height\":960,\"caption\":\"JavaScript Popup Enlarge Image onclick\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Zoom\",\"item\":\"https:\/\/codehim.com\/category\/zoom\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Enlarge\/Zoom Image Onclick JavaScript Popup\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Enlarge\/Zoom Image Onclick JavaScript Popup &#8212; CodeHim","description":"Here is a lightweight JavaScript code snippet to create popup enlarge image onclick event. You can view demo and download code.","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:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/","og_locale":"en_US","og_type":"article","og_title":"Enlarge\/Zoom Image Onclick JavaScript Popup &#8212; CodeHim","og_description":"Here is a lightweight JavaScript code snippet to create popup enlarge image onclick event. You can view demo and download code.","og_url":"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-11T16:40:00+00:00","article_modified_time":"2024-01-22T09:44:18+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/www.codehim-1.png","type":"image\/png"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Enlarge\/Zoom Image Onclick JavaScript Popup","datePublished":"2024-01-11T16:40:00+00:00","dateModified":"2024-01-22T09:44:18+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/"},"wordCount":147,"commentCount":1,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/www.codehim-1.png","articleSection":["Zoom"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/","url":"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/","name":"Enlarge\/Zoom Image Onclick JavaScript Popup &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/www.codehim-1.png","datePublished":"2024-01-11T16:40:00+00:00","dateModified":"2024-01-22T09:44:18+00:00","description":"Here is a lightweight JavaScript code snippet to create popup enlarge image onclick event. You can view demo and download code.","breadcrumb":{"@id":"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/www.codehim-1.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/www.codehim-1.png","width":1280,"height":960,"caption":"JavaScript Popup Enlarge Image onclick"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/zoom\/javascript-popup-enlarge-image-onclick\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Zoom","item":"https:\/\/codehim.com\/category\/zoom\/"},{"@type":"ListItem","position":3,"name":"Enlarge\/Zoom Image Onclick JavaScript Popup"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":20691,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/6355","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=6355"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/6355\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/6362"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=6355"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=6355"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=6355"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}