Skip to main content

Bug Tracker

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 rwaldron comment:1

component: unfiledsupport
priority: undecidedhigh
resolution: → duplicate
status: newclosed

This has been fixed, please update to the latest version of jQuery

https://github.com/jquery/jquery/blob/master/src/support.js#L28