Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Pass Value to next page in html?
Is there a way to pass a value from one page to another in html, but i can use only JavaScript and pure html no frames
2 Answers
- just "JR"Lv 78 years agoFavorite Answer
The ONLY way to pass variables between HTML only pages is to use cookies!
The variable collected in page 1 is strored in a cookie abd, when page 2 loads, the first action to do is to read the cookie to use it (then delete it).
Source(s): http://webprosonly.com/ - SteveOLv 78 years ago
Without using server-side calls to store session state, there is no way to really pass values between pages unless you create a very dynamic single web page that can more or less act like a multi-page site using a variety of HTML5, CSS3, and JS/jQuery scripting for events and animations and such. I don't know why you would even consider using frames for anything in the first place unless you were going to embed a small piece of content from a different site.