Changes between Version 1 and Version 2 of Ticket #21106, comment 16
- Timestamp:
- 09/03/2012 12:38:28 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21106, comment 16
v1 v2 1 1 Closed #21747 as a duplicate. 2 2 3 In trunk (with jQuery 1.8 ), the symptoms are different:3 In trunk (with jQuery 1.8.1), the symptoms are different: 4 4 1. The lagging appears when checking any category on a regular Edit Post screen as well, in both IE and Firefox. 5 5 2. If there's a taxonomy starting with "even", IE throws an error when checking its terms: … … 17 17 > Because `:checkbox` is a jQuery extension and not part of the CSS specification, queries using `:checkbox` cannot take advantage of the performance boost provided by the native DOM `querySelectorAll()` method. For better performance in modern browsers, use `[type="checkbox"]` instead. 18 18 19 [attachment:21106.2.patch] fixes the stack overflow in IE and the lagging in both Firefox and IE. It should cover all the existing core usage of those class names. Tested in 3.4.1 (with jQuery 1.7 ) as well.19 [attachment:21106.2.patch] fixes the stack overflow in IE and the lagging in both Firefox and IE. It should cover all the existing core usage of those class names. Tested in 3.4.1 (with jQuery 1.7.2) as well. 20 20 21 21 [attachment:21106.3.patch] binds all three non-form functions to both `a` and `input` elements, in case plugins might rely on that. Seems is a little bit slower, but perhaps safer. Not sure if that's necessary though.