mirror of
https://github.com/zulip/zulip.git
synced 2025-11-15 03:11:54 +00:00
A selector like `$('.elem1:first .elem2')` selects all `.elem2` under
the first `.elem1`. We can instead use `$('.elem1').first().find('.elem2')`.