Password Validation using REGEX Regular Expression in Javascript Every software Password is very sensitive and very much important part that can authenticate user. For this reason, software developer use different types of validaion use. Here we discuss four different types of Password validation. Now first of this: Example 1: 7 to 20 characters which contain […]
Dropdown Validation in Javascript
Dropdown Validation in Javascript Every software need Dropdown in many place like gender, department, religion and so many place. Javascript Dropdown use for collect those information from the user only select. Dropdown validation is most important this time. Let’s discuss index.php page for select option Dropdown validation using Javascript: In here, radio button validation by […]
Radio Button Validation in Javascript
Radio Button Validation in Javascript Every software need Radio button in many place like gender, department, religion and so many place. Javascript Radio button use for collect those information from the user only check box. Radio button validation is most important this time. Let’s discuss index.php page for Radio Button validation using Javascript: In here, […]
Javascript Get Radio Button Value
Javascript Get Radio Button Value Every software need Radio button in many place like gender, department, religion and so many place. Javascript Radio button use for collect those information from the user only check box. Let’s discuss index.php page for Get Radio Button Value using Javascript: In here, radio button get value by using Javascript […]
Validation in Javascript for Registration Form
Validation in Javascript for Registration Form Every software need Login/Registration page validation. Validation use for collect perfect information from the user. Let’s discuss index.php page for validation using Javascript: In here, every input field id value get using document.getElementByID(“”).value which is not empty or “” that result is perfect. That’s end of today. Happy coding […]
Email Validation with REGEX in Javascript
Email Validation with REGEX in Javascript Email validation is a very important part in a software. Most of the time user give a invalid email. We can check validity of email using a simple REGEX in javascript in font-end part. Let’s discuss about this with index.php page: Here we use regular expression “/^\w+([.-]?\w+)@\w+([.-]?\w+)(.\w{2,3})+$/” . Happy […]