किसी स्क्रिप्ट को निष्पादित करने के लिए जब तत्व HTML में अमान्य है, अमान्य का उपयोग करें विशेषता।
उदाहरण
अवैध को लागू करने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं विशेषता।
<!DOCTYPE html> <html> <head> <title>HTML oninvalid attribute</title> </head> <body> <h2>ID</h2> <form action = "/new.php"> <input type = "text" placeholder = "Student ID" name = "sname" oninvalid = "alert('Fill it first!')" required /><br> <input type = "submit" value = "Submit"> </form> </body> </html>