Selecting Elements in jQuery (jQuery Selectors)

6 years ago

To collect a group of elements, we pass the selector to the jQuery function using the simple syntax [crayon-68bc2b90591f5877732378/] The…

jQuery library Introduction

jQuery is a lightweight, "write less, do more", JavaScript library. The purpose of jQuery is to make it much easier…

6 years ago

Adjust li width fit with ul width of the outer div/body

HTML:- [crayon-68bc2b9059eee961948025/] CSS:- [crayon-68bc2b9059ef5724751463/] JavaScript:- [crayon-68bc2b9059ef8327949069/]  

6 years ago

Customize Input Box using jQuery

Prevent users typing special characters in text box, textarea, etc. [crayon-68bc2b905a101519653699/] ^[a-zA-Z]+$ Alphabets ^[a-zA-Z\s]+$ Alphabets + Space Example:-

6 years ago

JavaScript simple form validation with example

Any interactive web site has form input - a place where the users input different kind of information. This data…

6 years ago

Clear the browser cache of CSS or JavaScript Using Javascript

[crayon-68bc2b905a4f3316866576/]  

7 years ago

Simple Ajax Call

[crayon-68bc2b905a9f0442109724/]  

7 years ago

Bootstrap Button Loading

[crayon-68bc2b905ab75527079539/] [crayon-68bc2b905ab7a298974782/]  

7 years ago

How can I disable an option in a select box based on its value in JavaScript?

[crayon-68bc2b905ac72535943872/] Without enabling non-targeted elements: [crayon-68bc2b905ac75800518971/] jQuery With jQuery you can do this with a single line: [crayon-68bc2b905ac78810585348/] Without enabling…

7 years ago