A lightweight JavaScript library alternative to jQuery
npm install @jugstalt/jextend Javascript
$('#myElement')
`
- Manipulate DOM:
` Javascript
$('#myElement').html('Hello, World!')
`
- Handle events:
` Javascript
$('#myButton').on('click', () => alert('Button clicked!'))
`
- Perform Ajax requests:
` Javascript
$.ajax({ url: 'https://api.example.com/data', success: data => console.log(data) })
`
Table of Contents
1. Introduction
2. Getting Started
3. Core
4. Selectors
5. DOM Manipulation
6. Events
7. Ajax
8. Utilities
9. Extensions
Introduction
jExtend (jExt) is a lightweight and efficient JavaScript library designed to provide a more accessible and user-friendly experience for developers
who are looking to utilize some of the most essential features found in jQuery. By focusing on a minimalistic approach, jExt ensures that it remains quick and efficient without sacrificing the core functionality that developers have come to expect.
Getting Started
To get started with jExt, simply include the library in your project and start using the jExt (or $) function to access and manipulate the DOM,
handle events, perform Ajax requests, and more.
For more detailed information on each feature, check out the corresponding documentation pages linked in the Table of Contents above.
If you have existing projects using jQuery, you can do something like this, after you have
loaded the libraries:
` html
``