How to resolve this error - no attribute "onFocus"

I get an error because there is no "onFocus" attribute. I have the code as follows:

<input name="name" id="name" class="small required name" type="text" value="Name:" onFocus="if(this.value='Name:'){this.value=''}" />

I tried to check my site at http://validator.w3.org/ and I got these errors. Can someone help me solve this problem?

+3
source share
1 answer

The attribute name is onfocussmall f. This is what the validator complains about.

+6
source

Source: https://habr.com/ru/post/1759072/


All Articles