Category Archives: jQuery

jQuery Validation for Radio Button and Check Box

Validation for radio button and check box in a webpage is important. Radio button and check boxes are used in poll, online test, registration form, etc. In each and every registration or any form, radio button & check box will have validation ( that is either javascript or jquery) View Demo Stylesheet [code type=css] <style… Read More »

jQuery User Registration form Validation

jQuery user registration form validation will avoid some improper registration. Every registration web form should have a validation. when we implement registration form without validation, user may submit null values and many problems will occur, which leads our site to be more vulnerable. Here i have implemented registration page with 5 values( username, password, re-enter… Read More »

jQuery Validation for Login Form

Every Login form should have client side validation. If we have not used client side validation, our code will go to server and check the username and password, it will increase server traffic. By using client side validation null username and password can be filtered in browser itself, so that we can reduce server traffic.… Read More »

Instant Character Counter Using jQuery

Instant character counter using jquery in the sense without refreshing the page, we have to count the number of character left or number of character typed. Only option to count the typed character is by using client side language ( jQuery or javascript). View Demo Here is the jQuery code to count the text. <script… Read More »