Like if I wanted to select both document and window elements.
$(window, document).doStuff();
Doesn't work. Probably because according to the docs, 2nd argument is some "context" thing...
Basically I'm just looking for an alternative too
$(window).doStuff();
$(document).doStuff();