<?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: nehagopinathan18</title>
    <description>The latest articles on DEV Community by nehagopinathan18 (@nehagopinathan18).</description>
    <link>https://dev.to/nehagopinathan18</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%2F602012%2F73326d99-5065-44bd-86e4-952e6323936f.jpeg</url>
      <title>DEV Community: nehagopinathan18</title>
      <link>https://dev.to/nehagopinathan18</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nehagopinathan18"/>
    <language>en</language>
    <item>
      <title>Online Code Editor</title>
      <dc:creator>nehagopinathan18</dc:creator>
      <pubDate>Wed, 24 Mar 2021 01:19:53 +0000</pubDate>
      <link>https://dev.to/nehagopinathan18/online-code-editor-2b9b</link>
      <guid>https://dev.to/nehagopinathan18/online-code-editor-2b9b</guid>
      <description>&lt;p&gt;&lt;strong&gt;Code Editor&lt;/strong&gt; a simple text editor that is specialized for writing software. A source code editor may be a stand-alone program or part of an integrated development environment (IDE).They make writing and reading of code easier and convenient.&lt;/p&gt;

&lt;p&gt;As a part of &lt;strong&gt;Crio&lt;/strong&gt; &lt;strong&gt;##IBelieveinDoing&lt;/strong&gt; program I tried to build an &lt;strong&gt;Online Code Editor&lt;/strong&gt; just like other online code editors such as &lt;strong&gt;codepen&lt;/strong&gt;, &lt;strong&gt;codeSandbox&lt;/strong&gt;, &lt;strong&gt;W3school&lt;/strong&gt;, &lt;strong&gt;JsBin&lt;/strong&gt;, etc. &lt;/p&gt;

&lt;h2&gt;
  
  
  Online Code Editor
&lt;/h2&gt;

&lt;p&gt;It is a code editor for HTML, CSS and JS code snippets using HTML, CSS and JQuery. The code editor’s functionality is similar to that of &lt;a href="https://www.jsbin.com"&gt;jsbin&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Prerequisites:
&lt;/h2&gt;

&lt;p&gt;*Jquery&lt;br&gt;
*VsCode&lt;br&gt;
*GitHub&lt;br&gt;
*HTML/CSS&lt;/p&gt;
&lt;h2&gt;
  
  
  jQuery:
&lt;/h2&gt;

&lt;p&gt;jQuery is a JavaScript library designed to simplify HTML DOM tree traversal and manipulation, as well as event handling, CSS animation, and Ajax. It is free, open-source software.&lt;/p&gt;
&lt;h2&gt;
  
  
  How to add jQuery to Your Web Pages?
&lt;/h2&gt;

&lt;p&gt;There are 2 ways to start using jQuery on your website -&lt;/p&gt;

&lt;p&gt;1.Download the jQuery library from &lt;a href="https://www.jQuery.com"&gt;jQuery&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;2.Include jQuery from a CDN (Content Delivery Network)&lt;br&gt;
The jQuery library is a single JavaScript file, and you reference it with the HTML  tag.&lt;br&gt;

&lt;/p&gt;&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;head&amp;gt;
&amp;lt;script src="jquery-3.5.1.min.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;

&lt;p&gt;Basic syntax is: $(selector).action()&lt;/p&gt;

&lt;p&gt;A $ sign to define/access jQuery&lt;br&gt;
A (selector) to "query (or find)" HTML elements&lt;br&gt;
A jQuery action() to be performed on the element(s)&lt;/p&gt;
&lt;h2&gt;
  
  
  VSCode:
&lt;/h2&gt;

&lt;p&gt;VS Code is source code editor which comes with built-in support for JavaScript, TypeScript and Node.js &lt;/p&gt;
&lt;h2&gt;
  
  
  GitHub
&lt;/h2&gt;

&lt;p&gt;GitHub is a code hosting platform for collaboration and version control. A GitHub repository can be used to store a development project. It can contain folders and any type of files (HTML, CSS, JavaScript, Documents, Data, Images).&lt;/p&gt;
&lt;h2&gt;
  
  
  HTML/CSS
&lt;/h2&gt;

&lt;p&gt;HTML is the standard markup language for creating Web pages.&lt;br&gt;
HTML describes the structure of a Web page.&lt;/p&gt;

&lt;p&gt;CSS stands for Cascading Style Sheets.CSS saves a lot of work. It can control the layout of multiple web pages all at once.&lt;/p&gt;
&lt;h2&gt;
  
  
  iframe
&lt;/h2&gt;

&lt;p&gt;The #iframe tag specifies an inline frame. An inline frame is used to embed another document within the current HTML document.&lt;/p&gt;
&lt;h2&gt;
  
  
  About the project:
&lt;/h2&gt;

&lt;p&gt;This project is a very basic and simple code editor built using basic HTML, CSS, and j Query. In this project the code entered in each section i.e HTML , CSS and JavaScript section is combined and shown as collected output using HTMl iFrame.&lt;/p&gt;
&lt;h2&gt;
  
  
  Challenge
&lt;/h2&gt;

&lt;p&gt;To add toggle functionality to tabs using a single function was a new learning and challenge to understand. Tips and sample code example provided in the project guide was very helpful to understand and implement the logic.&lt;br&gt;
Another challenge was to understand and implement the output section using iframe. This section is very deep and there were many new concepts used. Through this section I learnt about HTML iframe tag, contents() function , val() etc. &lt;/p&gt;
&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;This is my first real programming project and it was very insightful and great learning journey through entire project creation. I was able to built a very basic view of the project. In the entire process I learnt about many new CSS style, HTMl , and JS function. Also through this project I landed up writing my first blog which I had never thought.&lt;br&gt;
I am sharing my code repo and web-app link below:&lt;br&gt;
Github: &lt;a href="https://github.com/nehagopinathan18/onlineEditor"&gt;https://github.com/nehagopinathan18/onlineEditor&lt;/a&gt;&lt;br&gt;
Link:&lt;a href="https://onlinecode-editor.netlify.app/"&gt;https://onlinecode-editor.netlify.app/&lt;/a&gt;&lt;br&gt;
Welcome for any suggestion and review.&lt;/p&gt;

&lt;p&gt;A huge thanks to @Crio Team, @Som, &lt;a class="comment-mentioned-user" href="https://dev.to/ajay"&gt;@ajay&lt;/a&gt;
 for bring up such projects ideas for beginners and designed it is so simple that a even a non-coder like me could understand and begin from basics. &lt;/p&gt;


</description>
      <category>jquery</category>
      <category>html</category>
      <category>crio</category>
      <category>ibelieveindoing</category>
    </item>
  </channel>
</rss>
