Notice it when you type a valid e-mail... then delete this email and it doesn't hide submit button. There a jsFiddle:
Can anyone help me?
thx!
|
Notice it when you type a valid e-mail... then delete this email and it doesn't hide submit button. There a jsFiddle: Can anyone help me? thx! |
|||
|
|
|
Check for a valid regex and the length. Your regex has success for a empty field. You check the length of the collection of jQuery elements here
But you must check the length of the value
Updated jsFiddle
|
|||||||||||
|
|
The check for empty string is actually wrong. This one returns the number of elements (which is always 1):
Change to something like this
|
|||
|
|