{"id":9865,"date":"2024-01-12T18:09:00","date_gmt":"2024-01-12T18:09:00","guid":{"rendered":"https:\/\/codehim.com\/?p=9865"},"modified":"2024-01-22T16:12:47","modified_gmt":"2024-01-22T11:12:47","slug":"typing-and-deleting-effect-with-javascript","status":"publish","type":"post","link":"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/","title":{"rendered":"Typing and Deleting Effect with JavaScript"},"content":{"rendered":"<p>This JavaScript code snippet helps you to create typing and deleting effect. You can set phrases in a array that you want to use in typing and erasing animation. It seamlessly switches words within the element ID &#8216;retype,&#8217; providing a cleaner transition when neighboring words have distinct initial letters.<\/p>\n<p>You can integrate this animation inside the hero section of your website, personal portfolio, or animated blocks for additional attention to your content. Moreover, you can customize the <a href=\"https:\/\/codehim.com\/html5-css3\/css-code-for-animated-text\/\" target=\"_blank\" rel=\"noopener\">animated text<\/a> with additional CSS according to your needs.<\/p>\n<h2>How to Create Typing and Deleting Effect with JavaScript<\/h2>\n<p>1. Start by incorporating the HTML snippet into your webpage. The <code>&lt;span&gt;<\/code> element with the ID of &#8216;retype&#8217; is where the magic happens. Customize the text inside according to your preference.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;p&gt;This code is &lt;span id=\"retype\"&gt;Awesome.&lt;\/span&gt;&lt;\/p&gt;<\/pre>\n<p>2. Make your animation visually appealing with some CSS styling. The following styles give a gradient background and a subtle border effect to the animated text. Feel free to modify the styles to match your website&#8217;s aesthetic.<\/p>\n<pre class=\"prettyprint linenums lang-css\">body{\r\n  background: linear-gradient(to right, #c0c0aa, #1cefff);\r\n}\r\n\r\n.cd__main p{\r\n\tpadding: 20% 10%;\r\n\tfont-size: 200%;\r\n\tfont-family: arial;\r\n\tcolor: #333333;\r\n}\r\n#retype{\r\n\tcolor: #3333DD;\r\n\tborder-right: solid 0.1em #333377;\r\n}<\/pre>\n<p>3. Finally, add the following JavaScript function to your project. The &#8216;retype&#8217; object is responsible for creating a seamless transition between words. Replace sample words with your own.<\/p>\n<pre class=\"prettyprint linenums lang-js\">\/\/ OBJECT: 'retype' controls the deletion and creation of new words\r\nvar retype = {\r\n\t\/\/ ARRAY: 'retypePhrases' contains the words that will be switched\r\n\t\/\/\t\t  The tool replaces the word contained within the element with the ID of 'retype'\r\n\t\/\/\t\t  It works cleaner if neighboring words have different first letters.\r\n\t\/\/\t\t  Spaces in phrases can cause a hiccup. Best practice to keep phrases as single words.\r\n\tretypePhrases: [\r\n\t\t'Quick.',\r\n\t\t'Fun.',\r\n\t\t'Easy.',\r\n\t\t'Fast.',\r\n\t\t'Simple.',\r\n\t\t'Awesome.'\r\n\t],\r\n\tindex       : -1,\r\n\telem        : document.getElementById('retype'),\r\n\tstart       : function(){\r\n\t\tvar _this = this;\r\n\t\tsetTimeout( function(){\r\n\t\t\t_this.deleteLetter();\r\n\t\t}, 3000 ); \/\/ Delay the start of a new word by 3 seconds\r\n\t},\/\/ END retype.start()\r\n\tdeleteRepeat: function(){\r\n\t\tthis.deleteLetter();\r\n\t},\/\/ END retype.deleteRepeat()\r\n\tdeleteLetter: function(){\r\n\t\tvar newWord = this.elem.innerHTML;\r\n\t\tif( newWord.length &gt; 0 ){\r\n\t\t\tnewWord = newWord.substring(0, newWord.length - 1);\r\n\t\t\tvar _this = this;\r\n\t\t\tsetTimeout( function(){\r\n\t\t\t\t_this.elem.innerHTML = newWord;\r\n\t\t\t\t_this.deleteRepeat();\r\n\t\t\t}, 75 );\r\n\t\t}else{\r\n\t\t\tthis.newLetter();\r\n\t\t}\/\/ END if( newWord.length &gt; 0 )\r\n\t},\/\/ END retype.deleteLetter()\r\n\tnewRepeat   : function(){\r\n\t\tthis.newLetter();\r\n\t},\/\/ END retype.newRepeat()\r\n\tnewLetter   : function(){\r\n\t\tvar newWord = this.elem.innerHTML;\r\n\t\tif( newWord.length === 0 ){\r\n\t\t\tthis.index++;\r\n\t\t\tif( this.index &gt;= this.retypePhrases.length ){\r\n\t\t\t\tthis.index = 0;\r\n\t\t\t}\r\n\t\t}\/\/ END if( newWord.length === 0 )\r\n\t\tvar newLetters = this.retypePhrases[ this.index ];\r\n\t\tif( newLetters.length &gt; newWord.length ){\r\n\t\t\tnewLetters = newLetters.substring(0, ( newWord.length + 1 ) );\r\n\t\t\tvar _this = this;\r\n\t\t\t\/\/ Add a slight random variation in retype time to make the letter typing seem more 'human'\r\n\t\t\tvar time = Math.round( Math.random() * 100 ) + 100;\r\n\t\t\tsetTimeout( function(){\r\n\t\t\t\t_this.elem.innerHTML = newLetters;\r\n\t\t\t\t_this.newLetter();\r\n\t\t\t}, time );\r\n\t\t}else{\r\n\t\t\tthis.start();\r\n\t\t\t\/\/ Yep, this makes the retype an infinite loop\r\n\t\t}\/\/ END if( newLetters.length &gt; newWord.length )\r\n\t}\/\/ END retype.newLetter()\r\n};\r\n\r\nretype.start();<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully created a typing and deleting effect with JavaScript. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This JavaScript code snippet helps you to create typing and deleting effect. You can set phrases in a array that&#8230;<\/p>\n","protected":false},"author":1,"featured_media":9876,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[209],"tags":[227],"class_list":["post-9865","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-animation-effects","tag-typing-effect"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Typing and Deleting Effect with JavaScript &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Typing and Deleting Effect with JavaScript. You can view demo and download the source 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\/animation-effects\/typing-and-deleting-effect-with-javascript\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Typing and Deleting Effect with JavaScript &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Typing and Deleting Effect with JavaScript. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/\" \/>\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-12T18:09:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T11:12:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Typing-and-Deleting-Effect-with-JavaScript.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\/animation-effects\/typing-and-deleting-effect-with-javascript\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Typing and Deleting Effect with JavaScript\",\"datePublished\":\"2024-01-12T18:09:00+00:00\",\"dateModified\":\"2024-01-22T11:12:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/\"},\"wordCount\":221,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Typing-and-Deleting-Effect-with-JavaScript.png\",\"keywords\":[\"Typing Effect\"],\"articleSection\":[\"Animation &amp; Effects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/\",\"url\":\"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/\",\"name\":\"Typing and Deleting Effect with JavaScript &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Typing-and-Deleting-Effect-with-JavaScript.png\",\"datePublished\":\"2024-01-12T18:09:00+00:00\",\"dateModified\":\"2024-01-22T11:12:47+00:00\",\"description\":\"Here is a free code snippet to create a Typing and Deleting Effect with JavaScript. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Typing-and-Deleting-Effect-with-JavaScript.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Typing-and-Deleting-Effect-with-JavaScript.png\",\"width\":1280,\"height\":960,\"caption\":\"Typing and Deleting Effect with JavaScript\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Animation &amp; Effects\",\"item\":\"https:\/\/codehim.com\/category\/animation-effects\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Typing and Deleting Effect with JavaScript\"}]},{\"@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":"Typing and Deleting Effect with JavaScript &#8212; CodeHim","description":"Here is a free code snippet to create a Typing and Deleting Effect with JavaScript. You can view demo and download the source 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\/animation-effects\/typing-and-deleting-effect-with-javascript\/","og_locale":"en_US","og_type":"article","og_title":"Typing and Deleting Effect with JavaScript &#8212; CodeHim","og_description":"Here is a free code snippet to create a Typing and Deleting Effect with JavaScript. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-12T18:09:00+00:00","article_modified_time":"2024-01-22T11:12:47+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Typing-and-Deleting-Effect-with-JavaScript.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\/animation-effects\/typing-and-deleting-effect-with-javascript\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Typing and Deleting Effect with JavaScript","datePublished":"2024-01-12T18:09:00+00:00","dateModified":"2024-01-22T11:12:47+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/"},"wordCount":221,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Typing-and-Deleting-Effect-with-JavaScript.png","keywords":["Typing Effect"],"articleSection":["Animation &amp; Effects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/","url":"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/","name":"Typing and Deleting Effect with JavaScript &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Typing-and-Deleting-Effect-with-JavaScript.png","datePublished":"2024-01-12T18:09:00+00:00","dateModified":"2024-01-22T11:12:47+00:00","description":"Here is a free code snippet to create a Typing and Deleting Effect with JavaScript. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Typing-and-Deleting-Effect-with-JavaScript.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Typing-and-Deleting-Effect-with-JavaScript.png","width":1280,"height":960,"caption":"Typing and Deleting Effect with JavaScript"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/animation-effects\/typing-and-deleting-effect-with-javascript\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Animation &amp; Effects","item":"https:\/\/codehim.com\/category\/animation-effects\/"},{"@type":"ListItem","position":3,"name":"Typing and Deleting Effect with JavaScript"}]},{"@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":966,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9865","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=9865"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9865\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/9876"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=9865"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=9865"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=9865"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}