I'm building a quote calculator that makes all the calculations client side with Javascript, and then if the person wishes to go ahead with the quote, all the information they've entered will be copied from the list structure into a form and submitted via PHP.
Is it likely that there will be any issues that will cause the browser to freeze during this process, causing the user to refresh and lose all of the details they've entered?
The reason I'm worried about freezing is because parts of the quote calculator will include JSON requests for Google Maps API v3 services, and I think that increases the chances of getting non responsive webpages.
If there are potential issues, how can I plan to avoid them best?
Is there a way to save the details they enter without an active server connection, in case they have to refresh, I'm thinking probably a cookie?