<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: johnss</title>
    <description>The latest articles on DEV Community by johnss (@johns).</description>
    <link>https://dev.to/johns</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F162858%2F0dafaee5-d842-451d-a629-a1914019a147.png</url>
      <title>DEV Community: johnss</title>
      <link>https://dev.to/johns</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/johns"/>
    <language>en</language>
    <item>
      <title>dynamically load javascript</title>
      <dc:creator>johnss</dc:creator>
      <pubDate>Thu, 30 May 2019 19:37:15 +0000</pubDate>
      <link>https://dev.to/johns/dynamically-load-javascript-4lc4</link>
      <guid>https://dev.to/johns/dynamically-load-javascript-4lc4</guid>
      <description>&lt;p&gt;just change ele.src to anything you want&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;(function () {
    var ele = document.createElement('script');
    ele.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js";
    ele.id = "JQuery";
    ele.onload = function () {
        //code to be executed when the document has been loaded
    };
    document.getElementsByTagName('head')[0].appendChild(ele);
})();
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;source &lt;a href="https://stackoverflow.com/questions/10994335/javascript-head-body-or-jquery"&gt;https://stackoverflow.com/questions/10994335/javascript-head-body-or-jquery&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
    </item>
    <item>
      <title>need javascript json tree view</title>
      <dc:creator>johnss</dc:creator>
      <pubDate>Wed, 01 May 2019 21:07:11 +0000</pubDate>
      <link>https://dev.to/johns/need-javascript-json-tree-view-4nnd</link>
      <guid>https://dev.to/johns/need-javascript-json-tree-view-4nnd</guid>
      <description>&lt;p&gt;i need a json tree view js based, but most json tree view can only hide the value if the value is an array if not it will display directly and render it as regular syntax highlighter, is there a tree view that collapse the value even if the value is a string&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>json</category>
    </item>
  </channel>
</rss>
