Is there anyway to move a group of games from the end of the document to page 2 of it?
Forum › How do I...?
Changing page order?
jQuery works for content manipulation, or you can just use the DOM api directly.
For example, if you had a div with a specific ID, you can call document.getElementById to access it, then remove the element from its parent and insert it somewhere else in the document.
For example, if you had a div with a specific ID, you can call document.getElementById to access it, then remove the element from its parent and insert it somewhere else in the document.