This is the code for entering a text field. I want to call the function "checkDateFormat" with text input as a parameter when the user leaves the field.
Here is the code I wrote:
Fecha de prueba: <input type="text" name="date_t" id="date_t" value="22/08/2014" onblur="checkDateFormat(this.date_t.value)"><br>
However, I am sure that the function is not even being called.
What am I doing wrong?
source
share