Selecting Elements in jQuery (jQuery Selectors)

7 years ago

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

jQuery library Introduction

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

7 years ago

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

HTML:- [crayon-6928506f27eb7281950675/] CSS:- [crayon-6928506f27ebb859220408/] JavaScript:- [crayon-6928506f27ebd639152536/]  

7 years ago

Customize Input Box using jQuery

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

7 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…

7 years ago

Clear the browser cache of CSS or JavaScript Using Javascript

[crayon-6928506f2845f854452352/]  

7 years ago

Simple Ajax Call

[crayon-6928506f28563051938450/]  

7 years ago

Bootstrap Button Loading

[crayon-6928506f286ec945116637/] [crayon-6928506f286f1500726448/]  

7 years ago

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

[crayon-6928506f287de653862341/] Without enabling non-targeted elements: [crayon-6928506f287e5948015194/] jQuery With jQuery you can do this with a single line: [crayon-6928506f287e9361630448/] Without enabling…

7 years ago