i have this input tag in a webpage, but every time that i have the focus on a text field and press the Enter button it opens the calendar window instead of only open it on click, can anyone tell me what i'm doing wrong here ?
i have this input tag in a webpage, but every time that i have the focus on a text field and press the Enter button it opens the calendar window instead of only open it on click, can anyone tell me what i'm doing wrong here ?
thanks in advance
That's the default behavior of any HTML element: if an element has the focus, pressing Enter is the same as clicking. I believe it is part of the accessibility features (for devices that don't use a pointing device). There may be a way to override it, but I don't know how. Perhaps someone else does.