Prev: XSLT v. Javascript
Next: For ECMA 6
From: Andrew Poulos on 5 Jun 2010 07:42 On 5/06/2010 7:03 AM, Garrett Smith wrote: > Is there a good list of code reviews for jQuery? To be suitable for the > compendium, they should be simple, purely technical (unbiased), focused, > relevant, and to-the-point. > > While there are numerous known problems regarding jQuery attr and > removeAttr, they're loosely scattered. > > So, what's you're best jQuery thread? Slightly off topic. Here's an interesting quote from a respected scientific web site ;-) "...a hobby which demands a large investment of time and money, and you get a fanboy. They defend their favourite stuff and ridicule the competition, ignoring facts if they contradict their emotional connection." <url: http://www.gizmodo.com.au/2010/06/fanboyism-and-brand-loyalty/#more-400337 > Andrew Poulos
From: Garrett Smith on 8 Jun 2010 00:56 On 6/7/2010 9:07 PM, Paul Irish wrote: > On Jun 5, 7:20 am, Frobernik<nos...(a)nospam.com> wrote: > >> If your thinking about using it instead read a FAQ or book(s) ... > > > s/your/you're > You're a few days late. What's with the fiddling of the subject header? If you are capable of contributing something useful, please do. Garrett
From: Bwig Zomberi on 8 Jun 2010 01:16 Garrett Smith wrote: > Would be nice if tags could be set on a news message header and as a > bonus, if an archive existed with a "search tags" feature. I use Seamonkey Mail & Newsgroups, based Thunderbird 2. I can right-click on a message and select Tag -> some tag. There is also a View list where I can filter by tags. Probably Thunderbird also has this feature in v3. -- Bwig Zomberi
From: David Mark on 8 Jun 2010 12:19
On Jun 4, 5:03 pm, Garrett Smith <dhtmlkitc...(a)gmail.com> wrote: > Is there a good list of code reviews for jQuery? To be suitable for the > compendium, they should be simple, purely technical (unbiased), focused, > relevant, and to-the-point. > > While there are numerous known problems regarding jQuery attr and > removeAttr, they're loosely scattered. > > So, what's you're best jQuery thread? > All of mine are the best. :) But seriously, it's been done to death. All you need to know is that it uses get/removeAttribute in an unshielded manner. In other words, the code assumes that those methods have consistent interfaces in all major browsers in use today. Of course, they do not (as we've been over about a million times). They aren't even consistent in an IE8-only environment, unless you can turn off its Compatibility View. For some demonstrations of this (among other maladies), see the results of their silly query engines here:- http://www.cinsoft.net/slickspeed.html Wouldn't bank on those things if I were you. ;) Too bad jQuery, Dojo, etc. bet the farm on them. |