Changes between Initial Version and Version 4 of Ticket #312
- Timestamp:
- Nov 17, 2006, 4:31:40 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #312
-
Property
Priority
changed from
major
tominor
-
Property
Version
changed from
to
1.1
-
Property
Milestone
changed from
to
1.1
-
Property
Priority
changed from
-
Ticket #312 – Description
initial v4 2 2 3 3 For example, you could do: 4 $("div[&display=inline]") 5 $("div[&height>=12]") 6 $("table[&border-collapse=collapse]") 4 {{{ 5 $("div[&display=inline]") 6 $("div[&height>=12]") 7 $("table[&border-collapse=collapse]") 8 }}} 7 9 8 10 The patch also slightly modifies the jQuery parsing system to make it more amenable to adding parsers: 9 11 10 12 {{{ 11 13 Index: jquery.js 12 14 =================================================================== … … 170 172 * Remove the whitespace from the beginning and end of a string. 171 173 * 174 }}}