निम्नलिखित कोड है फोकस पर इनपुट फ़ील्ड को साफ़ करने के लिए -
उदाहरण
<!DOCTYPE html> <html> <head> <h1>Clearing an input field on focus example</h1> <input type="text" onfocus="this.value=''" value="Some random text..."> <h2>Click on the above field to clear its value</h2> </body> </html>
आउटपुट
उपरोक्त कोड निम्न आउटपुट उत्पन्न करेगा -
फ़ील्ड पर क्लिक करने पर, आंतरिक मान साफ़ हो जाएगा -