How can I store some information between pages with JS ?
My webapp is using sql queries to populate a couple pages and those queries usually return the same result. Is there a way to store this result in a JS variable, and force a refresh with sql queries only at some events ?
And how efficient is this vs. SQL queries ? vs. a cookie ?
You could try Local Storage.