Selecting Elements in jQuery (jQuery Selectors)

5 years ago

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

jQuery library Introduction

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

5 years ago

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

HTML:- [crayon-662f8f32295c6547890944/] CSS:- [crayon-662f8f32295cb662762333/] JavaScript:- [crayon-662f8f32295cd562696770/]  

5 years ago

Customize Input Box using jQuery

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

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

5 years ago

Clear the browser cache of CSS or JavaScript Using Javascript

[crayon-662f8f3229af0814161007/]  

5 years ago

Simple Ajax Call

[crayon-662f8f3229c1d443506561/]  

5 years ago

Bootstrap Button Loading

[crayon-662f8f3229d3b962715375/] [crayon-662f8f3229d54607461031/]  

5 years ago

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

[crayon-662f8f3229ebc448031903/] Without enabling non-targeted elements: [crayon-662f8f3229ed1221574639/] jQuery With jQuery you can do this with a single line: [crayon-662f8f3229ed3095325094/] Without enabling…

5 years ago