I have an application with several tabs. Each tab contains several frames. Each frame contains a form user should fulfil. The problem is, if user navigates back and forth between the different tabs, the frame.src is rendered again, and all the content filled inside the form is lost (if it wasn't submitted). Is there a way to cache the Frame tag, and to load the cached frames while naviagting back and forth bnetween tabs, in such a way that all form field conent will not be lost?
P.S-Show/Hide frame tricks are not an option. Example:
var frameCache="";
function cacheFrame()
{
frameCache=window.document.body.childNodes[3].children[0];
mainFrame= document.getElementById('mainFrame');
mainFrame.removeChild(window.document.body.childNodes[3].children[0]);
var d = document.getElementById('res');
d.appendChild(frameCache);
}
<div>
<input type="button" value="Click me!" onclick=cacheFrame()" />
</div>
<div id="mainFrame">
<iframe src="../formDetails.html" width="100%" height="500"> </iframe>
</div>
<div id="res"></div>
The problem: All the content filled inside /formDetails.html form were lost...