{"id":1565,"date":"2014-11-10T13:38:52","date_gmt":"2014-11-10T11:38:52","guid":{"rendered":"http:\/\/www.webcodegeeks.com\/?p=1565"},"modified":"2018-06-20T16:51:51","modified_gmt":"2018-06-20T13:51:51","slug":"javascript-copy-to-clipboard-example","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/","title":{"rendered":"Javascript copy to clipboard example"},"content":{"rendered":"<p>If you use any scripts for syntax highlighting, then you have seen that most of them have &#8220;copy to clipboard&#8221; as an option. And now you want to use that in your next project. But <em>how<\/em>? You don&#8217;t even need to worry, we&#8217;ve got you covered. Just follow along.<\/p>\n<p><strong>We will use:<\/strong><\/p>\n<ul>\n<li>Javascript<\/li>\n<li>Flash<\/li>\n<li><a href=\"http:\/\/zeroclipboard.org\/\" target=\"_blank\" rel=\"noopener\">Zero Clipboard<\/a><\/li>\n<\/ul>\n<p>[ulp id=&#8217;tCIwOngQUb3zSUuF&#8217;]<\/p>\n<h2>Copy to Clipboard in Internet Explorer<\/h2>\n<p>The easiest and most efficient way to build the Copy to Clipboard feature is in Internet Explorer.<\/p>\n<p>First you put this code in the body section of your <code>index.html<\/code> file:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;a href=&quot;#&quot; id=&quot;copy&quot; onclick=&quot;copyToClipboard(document.getElementById('pre').innerHTML)&quot;&gt;Copy to clipboard&lt;\/a&gt;\r\n&lt;pre id=&quot;pre&quot;&gt;\r\nWeb Code Geeks Example on JavaScript Copy to Clipboard Feature\r\n&lt;\/pre&gt;\r\n<\/pre>\n<p>Next, you put the following code in your <code>app.js<\/code> file:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\nfunction copyToClipboard(s) {\r\n    if (window.clipboardData &amp;&amp; clipboardData.setData) {\r\n        clipboardData.setData('text', s);\r\n    }\r\n}\r\n<\/pre>\n<p>Don&#8217;t forget to script the <code>app.js<\/code> file in your <code>index.html<\/code> like this:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;script src=&quot;app.js&quot;&gt;&lt;\/script&gt;\r\n<\/pre>\n<p>And with that, you&#8217;re set. As soon as you click on the &#8220;copy to clipboard&#8221; link, the text in <code>&lt;pre&gt;<\/code> tags will be copied. But what happens if Internet Explorer is not the browser of your choice (mine either)?<\/p>\n<p>We&#8217;ll show you the solution below.<\/p>\n<h2>For other browsers: Flash<\/h2>\n<p>For browsers other than IE, there&#8217;s no pure JavaScript solution for the &#8220;copy to clipboard&#8221; feature. That&#8217;s where Flash appears in our view.<\/p>\n<p>The browsers use a small Flash file to do the job: copy a string to a clipboard. This Flash file is actually embedded into the page but it&#8217;s invisible if you set the <code>width: 0;<\/code> and <code>height: 0;<\/code>. The code will go like this:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\nfunction copyToClipboard(s) {\r\n    \/\/ for IE\r\n    if (window.clipboardData &amp;&amp; clipboardData.setData) {\r\n        clipboardData.setData('text', s);\r\n    }\r\n    \/\/ for other browsers\r\n    else {\r\n        var flashcopier = 'flashcopier';\r\n        if(!document.getElementById(flashcopier)) {\r\n            var divholder = document.createElement('div');\r\n            divholder.id = flashcopier;\r\n            document.body.appendChild(divholder);\r\n        }\r\n        document.getElementById(flashcopier).innerHTML = '';\r\n        var divinfo = '&lt;embed src=&quot;_clipboard.swf&quot; FlashVars=&quot;clipboard='+encodeURIComponent(s)+'&quot; width=&quot;0&quot; height=&quot;0&quot; type=&quot;application\/x-shockwave-flash&quot;&gt;&lt;\/embed&gt;';\r\n        document.getElementById(flashcopier).innerHTML = divinfo;\r\n    }\r\n}\r\n<\/pre>\n<p>This idea is good, and works for most cases, but problems arise with Flash 10. For security reasons every action regarding clipboards requires user interaction (read more <a href=\"http:\/\/www.adobe.com\/devnet\/flashplayer\/articles\/fplayer10_uia_requirements.html\" target=\"_blank\" rel=\"noopener\">here<\/a>, in the Clipboard section). This problem occurs because the flash file is written with an old version of it, when security was not reinforced.<\/p>\n<p>The simplest solution to solve this is to modify the flash file&#8217;s source code to work with Flash 10 and all is well.<\/p>\n<h2>Zero Clipboard: A JavaScript library<\/h2>\n<p>If you don&#8217;t have access to the flash file&#8217;s source code, then you would have to find another way, which in our case is using the well-developed JavaScript library Zero Clipboard. Zero Clipboard in itself uses a flash file that works well with Flash 10. So let&#8217;s make it work.<\/p>\n<p>Put this code in the body section of <code>index.html<\/code>:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;button id='#copy_button' data-clipboard-target='to_copy'&gt;&lt;b&gt;Copy To Clipboard&lt;\/b&gt;&lt;\/button&gt;\r\n\r\n&lt;p id='to_copy'&gt;Web Code Geeks Copy to Clipboard example&lt;\/p&gt;\r\n<\/pre>\n<p>Now download Zero Clipboard and extract it in your project&#8217;s directory. Then find the <code>ZeroClipboard.js<\/code> file and script it in your <code>index.html<\/code>. It should look similar to this:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n  &lt;script type=&quot;text\/javascript&quot; src=&quot;zeroclipboard-2.1.6\/dist\/ZeroClipboard.js&quot;&gt;&lt;\/script&gt;\r\n<\/pre>\n<p>Then it&#8217;s time to place this code in your <code>app.js<\/code> file:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\n$(document).ready(function() {\r\n\r\n    var clip = new ZeroClipboard($(&quot;#copy_button&quot;), {\r\n        moviePath: &quot;zeroclipboard-2.1.6\/dist\/ZeroClipboard.swf&quot;\r\n    });\r\n});\r\n<\/pre>\n<p>And with this, you&#8217;re ready to go. Just remember, no testing locally, as the flash file in Zero Clipboard imposes security restrictions. You should test it online.<\/p>\n<h2>Download the source code for Javascript Copy to Clipboard Example<\/h2>\n<p>This was an example of Copy to Clipboard feature, using Javascript.<\/p>\n<div class=\"download\"><strong>Download<\/strong><br \/>\nYou can download the source code for this example here: <strong> <a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/CopyToClipboard1.zip\">CopyToClipboard<\/a><\/strong><\/div>\n","protected":false},"excerpt":{"rendered":"<p>If you use any scripts for syntax highlighting, then you have seen that most of them have &#8220;copy to clipboard&#8221; as an option. And now you want to use that in your next project. But how? You don&#8217;t even need to worry, we&#8217;ve got you covered. Just follow along. We will use: Javascript Flash Zero &hellip;<\/p>\n","protected":false},"author":25,"featured_media":920,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[51,52],"class_list":["post-1565","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-javascript","tag-flash","tag-zero-clipboard"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Javascript copy to clipboard example - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Interested to learn about copy to clipboard in Javascript? Check out our Example on how to use it for all the browsers.You can download the source code too!\" \/>\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.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Javascript copy to clipboard example - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Interested to learn about copy to clipboard in Javascript? Check out our Example on how to use it for all the browsers.You can download the source code too!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webcodegeeks\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/era.balliu.7\" \/>\n<meta property=\"article:published_time\" content=\"2014-11-10T11:38:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-06-20T13:51:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Era Balliu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@BalliuEra\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Era Balliu\" \/>\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.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/\"},\"author\":{\"name\":\"Era Balliu\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e\"},\"headline\":\"Javascript copy to clipboard example\",\"datePublished\":\"2014-11-10T11:38:52+00:00\",\"dateModified\":\"2018-06-20T13:51:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/\"},\"wordCount\":710,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"keywords\":[\"Flash\",\"Zero Clipboard\"],\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/\",\"name\":\"Javascript copy to clipboard example - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"datePublished\":\"2014-11-10T11:38:52+00:00\",\"dateModified\":\"2018-06-20T13:51:51+00:00\",\"description\":\"Interested to learn about copy to clipboard in Javascript? Check out our Example on how to use it for all the browsers.You can download the source code too!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#primaryimage\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/javascript\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Javascript copy to clipboard example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"name\":\"Web Code Geeks\",\"description\":\"Web Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webcodegeeks\",\"https:\/\/x.com\/webcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e\",\"name\":\"Era Balliu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f6adddf7eada210f682608fea9d8159441369ec622998a5851a447e0a2bfa3f3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f6adddf7eada210f682608fea9d8159441369ec622998a5851a447e0a2bfa3f3?s=96&d=mm&r=g\",\"caption\":\"Era Balliu\"},\"description\":\"Era is a Telecommunications Engineering student, with a great passion for new technologies. Up until now she has been coding with HTML\/CSS, Bootstrap and other front-end coding languages and frameworks, and her recent love is Angular JS.\",\"sameAs\":[\"http:\/\/www.webcodegeeks.com\/\",\"https:\/\/www.facebook.com\/era.balliu.7\",\"https:\/\/www.instagram.com\/eraballiu\/\",\"https:\/\/www.linkedin.com\/in\/eraballiu\",\"https:\/\/www.pinterest.com\/001r2gw0jt0ln6d\/\",\"https:\/\/x.com\/BalliuEra\",\"https:\/\/www.youtube.com\/c\/eraballiu\"],\"url\":\"https:\/\/www.webcodegeeks.com\/author\/era-balliu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Javascript copy to clipboard example - Web Code Geeks - 2026","description":"Interested to learn about copy to clipboard in Javascript? Check out our Example on how to use it for all the browsers.You can download the source code too!","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.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/","og_locale":"en_US","og_type":"article","og_title":"Javascript copy to clipboard example - Web Code Geeks - 2026","og_description":"Interested to learn about copy to clipboard in Javascript? Check out our Example on how to use it for all the browsers.You can download the source code too!","og_url":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_author":"https:\/\/www.facebook.com\/era.balliu.7","article_published_time":"2014-11-10T11:38:52+00:00","article_modified_time":"2018-06-20T13:51:51+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","type":"image\/jpeg"}],"author":"Era Balliu","twitter_card":"summary_large_image","twitter_creator":"@BalliuEra","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Era Balliu","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/"},"author":{"name":"Era Balliu","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e"},"headline":"Javascript copy to clipboard example","datePublished":"2014-11-10T11:38:52+00:00","dateModified":"2018-06-20T13:51:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/"},"wordCount":710,"commentCount":2,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","keywords":["Flash","Zero Clipboard"],"articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/","url":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/","name":"Javascript copy to clipboard example - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","datePublished":"2014-11-10T11:38:52+00:00","dateModified":"2018-06-20T13:51:51+00:00","description":"Interested to learn about copy to clipboard in Javascript? Check out our Example on how to use it for all the browsers.You can download the source code too!","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#primaryimage","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-copy-to-clipboard-example\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"JavaScript","item":"https:\/\/www.webcodegeeks.com\/category\/javascript\/"},{"@type":"ListItem","position":3,"name":"Javascript copy to clipboard example"}]},{"@type":"WebSite","@id":"https:\/\/www.webcodegeeks.com\/#website","url":"https:\/\/www.webcodegeeks.com\/","name":"Web Code Geeks","description":"Web Developers Resource Center","publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.webcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webcodegeeks","https:\/\/x.com\/webcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e","name":"Era Balliu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f6adddf7eada210f682608fea9d8159441369ec622998a5851a447e0a2bfa3f3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f6adddf7eada210f682608fea9d8159441369ec622998a5851a447e0a2bfa3f3?s=96&d=mm&r=g","caption":"Era Balliu"},"description":"Era is a Telecommunications Engineering student, with a great passion for new technologies. Up until now she has been coding with HTML\/CSS, Bootstrap and other front-end coding languages and frameworks, and her recent love is Angular JS.","sameAs":["http:\/\/www.webcodegeeks.com\/","https:\/\/www.facebook.com\/era.balliu.7","https:\/\/www.instagram.com\/eraballiu\/","https:\/\/www.linkedin.com\/in\/eraballiu","https:\/\/www.pinterest.com\/001r2gw0jt0ln6d\/","https:\/\/x.com\/BalliuEra","https:\/\/www.youtube.com\/c\/eraballiu"],"url":"https:\/\/www.webcodegeeks.com\/author\/era-balliu\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/1565","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/users\/25"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=1565"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/1565\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media\/920"}],"wp:attachment":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media?parent=1565"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=1565"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=1565"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}