Giter Site home page Giter Site logo

framework_aria's Introduction

framework_aria

Learning materials about some cool frameworks like Node.js, jQuery, and others.

introductiontable of contentsDownloadRelatedLicense

🚀 introduction

In the context of web development, I have studied frameworks. This file encompasses various libraries such as Node.js, jQuery, providing swift speed for a website. This resource serves as a guide for utilizing these framework libraries.

jQuery node.js npm

📋 Table of Contents

JQuery
  1. introduction
    • jQuery is a nimble and lightweight JavaScript library crafted to streamline HTML manipulation, animation, event handling, and document interaction.
  2. Install JQuery with CDN
    • One of the easiest ways to install jQuery is by using a CDN. Add the following script in the of your HTML:
      <script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
  3. Install JQuery with Local Storage
    • Download jQuery from the official website.
    • Copy the jQuery file (usually named jquery-x.x.x.min.js) to your project folder.
    • Add the following script in the of your HTML:
      <script src="path/to/jquery-x.x.x.min.js"></script>
  4. Install JQuery with NPM or YARN
    • If you are using Node.js and npm or Yarn as your package manager, you can install jQuery through the terminal:
      # Using npm
      npm install jquery
      
      # Using Yarn
      yarn add jquery
    • After installation, you can import jQuery in your JavaScript file:
      import $ from 'jquery';
  5. Implementation examples
    • Without jQuery
      document.getElementById('hideButton').addEventListener('click', function() {
        document.getElementById('myElement').style.display = 'none';
      });
    • with jQuery
      $(document).ready(function() {
        $('#hideButton').click(function() {
          $('#myElement').hide();
        });
      });

🔨 download

  1. Open a terminal or command prompt on your computer.
  2. Navigate to the directory where you want to save this project.
  3. Use the following command to download the project from the GitHub repository:
git clone https://github.com/ariafatah0711/framework_aria.git

📈 related

©️ license

framework_aria's People

Contributors

ariafatah0711 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.