3
I have the following problem, I have a input with the attribute readonly. When you click on it it is selected. I needed to prevent this because I have a function using the onblucan only work when the input is not in readonly.
<input type="text" readonly="readonly" onblur="alert('teste')">
This solution served me 100% thanks
– Lennon S. Bueno