The book sort of mentions this in passing, but I'm fairly certain that advice is specific to Sizzle (the jQuery selector engine), not generally. Your mileage may vary, but a browser that implements querySelectorAll is unlikely to show a real-world difference.
Sizzle works inside-out when appropriate, and so may look for td.gonzales and then look to see if it's within a .data, rather than the other way around. I remember when Sizzle first came out, this was a bit of a surprise, but it actually worked out better. So you can see why the more specific the right-hand side of the descendant selector, the better.
Here's a test case, try that in IE7 and you'll see a marked preference for the more specific right-hand side. But try it in a modern browser and you should seem basically no difference.
This is all micro-optimization, though, and pretty much useless in the absence of a real-world problem to solve, because it varies dramatically based on the elements on your page. Useful to remember if you actually have a slow selector causing you trouble on older browsers, perhaps, but other than that...
td.gonzalezand then look to see if it's inside a.data. But I suspect like most generalizations, it can be wrong as much as it's right depending on circumstances (how manydivvs.tdelements there are, for example). – T.J. Crowder May 17 '11 at 9:21querySelectorAlland you probably won't notice any difference as its all internal to the browser's engine. If, though, you're using IE6 or IE7, you'll notice a big difference (in a synthetic test; whether that translates to real-world differences is something else entirely). Try this, for instance, in IE7: jsperf.com/specific-left-or-right The more specific right-hand side wins quite handily. But this is all micro-optimization. – T.J. Crowder May 17 '11 at 9:33