Side navigation
#10571 closed bug (duplicate)
Opened October 25, 2011 01:07PM UTC
Closed October 25, 2011 03:28PM UTC
minor fix, to make jquery xml conform again
Reported by: | lohmann.andre@googlemail.com | Owned by: | |
---|---|---|---|
Priority: | high | Milestone: | None |
Component: | support | Version: | 1.6.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
There is a small line inside JQuery 1.6.3 which reads the following
<a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type=checkbox>
the unquoted checkbox breaks some rare CEHTML / TVSET Browsers because unquoted Attributes are not XML Conform.
Changing the Line to
<a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'>
simply helps
Attachments (0)
Change History (1)
Changed October 25, 2011 03:28PM UTC by comment:1
component: | unfiled → support |
---|---|
priority: | undecided → high |
resolution: | → duplicate |
status: | new → closed |
This has been fixed, please update to the latest version of jQuery
https://github.com/jquery/jquery/blob/master/src/support.js#L28