Side navigation
#3721 closed bug (invalid)
Opened December 17, 2008 01:31PM UTC
Closed June 10, 2009 11:47AM UTC
[validate] Validation doesn't happen in Opera 9.5 when validation rules defined in class attr
Reported by: | savamura | Owned by: | joern |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | plugin | Version: | 1.2.6 |
Keywords: | validation plugin | Cc: | savamura |
Blocked by: | Blocking: |
Description
Validation doesn't happen in Opera 9.5 when validation rules defined in class attribute.
<input type="text" name="email" class="required" id="email" />
In FF and IE it works fine.
If I set validation rules in rules object it works in Opera:
$("#form").validate(
{rules : {email : {required: true}} }
);
So it's the only way to make it work in Opera.