Reading Order

WHAT ORDER SHOULD I READ YOUR BOOKS?

For a printable list version of the reading order, click here.

const paginationBottom = document.querySelector('.dce-pagination-bottom'); const anchorElements = paginationBottom.querySelectorAll('a'); const orderParam = new URLSearchParams(window.location.search).get('order'); const worldParam = new URLSearchParams(window.location.search).get('world'); if (orderParam && orderParam !== '') { anchorElements.forEach((anchor) => { const href = new URL(anchor.href); href.searchParams.set('order', orderParam); if (worldParam && worldParam !== '') { href.searchParams.set('world', worldParam); } anchor.href = href.toString(); }); }