> How can I write a query to get all the div's after <div id="game">?
$$('#game div')
$$('#game ~ div')
Depending on what you mean by "after".
> How can I write a query to get all the div's after <div id="game">?
$$('#game div')
$$('#game ~ div')
Depending on what you mean by "after".