up vote 0 down vote favorite
share [g+] share [fb]

It's currently not so slow as to make the site unusable, but in mobile safari on the iphone there is a noticeable lag. Is there a simpler way to do this?

"Find div.items that have an empty div.video_guid"

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

Are there div's with a class video_guid anywhere else on the page? If not, you could simplify it to:

$('div.video_guid:empty');

The only difference between your selector and mine is that yours would match the parent div.item while mine would match the actual div.video_guid. To get around this, once my selector matches, if you want to perform operations to the parent div.item you could just do:

$('div.video_guid:empty').each(function() {
    var container = $(this).parents('div.item');
    // do something to the containing div
});

All things considered, I would expect that to perform better..

link|improve this answer
Yes these are the only div.video_guid:empty on the page. I was under the impression though that specifying the container in the selector aided performance, ie: $('#thecontainer div.video_guid:empty'); OR $('div.video_guid:empty','#thecontainer'); I'll see if I can run some tests, thanks! – jackb Mar 13 '09 at 18:19
That is actually correct. I'd probably change mine to have a second argument of #data – Paolo Bergantino Mar 30 '09 at 21:25
feedback

Read this related question. According to this,

$(‘div.item:has(div.video_guid:empty)’, '#data')

should be faster. Strange, but apparently measurable.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.