Monday, 8 August 2022

Form validation using JS

 index.html

    <!DOCTYPE html>
    <html lang="en">
    <body>
    <input type="text" id="input">
    <button type="button" id='btn'>submit</button>
    <script>
    document.getElementById('btn').addEventListener('click',validate);
    function validate(){
    const x=document.getElementById('input').value;
    if(isNaN(x)){
    alert('Please Enter Number');
        }
    }
    </script>
    </body>
    </html>








No comments:

Post a Comment

Regular Expressions In JS

 index.html file <! DOCTYPE html > < html lang = "en" > < body > < script > let re ; re = /hello/ i ;  ...