HTML frameset not loading properly second time in IE11 -


i have html page frameset loading selected record in table in ie11. if go previous page, select second record open not reloading selected data (showing opened data). no js issues in ie console.

here code:

<html> <head> </head>    <frameset rows="98,35," frameborder="no" framespacing="0">       <frame scrolling="no" src="explorerhead.jsp" name="headframe" noresize>       <frame scrolling="no" src="submenu.jsp" name="menuframe" noresize>       <frameset id="parentframeset" rows=",85%" frameborder="no" framespacing="0">          <frame src="buttonhead.jsp" name="buttonframe" scrolling="yes" frameborder="0" noresize>          <frame src="tablebody.jsp" name="browseframe" scrolling="yes" frameborder="0" noresize>       </frameset>    </frameset> </html> 

if open developer tools(f12),it working fine: no issues. thanks!


Comments

Popular posts from this blog

How to check data type in C++? -

javascript - Is getTimezoneOffset() stable during daylight saving transition? -

formula - R: how to pass in a reference to the variable in glm or lm? -