Home >Web Front-end >HTML Tutorial >Automatic page refresh problem in frameset, please help_html/css_WEB-ITnose
In index.jsp
<frameset> <frame></frame> <frameset> <frame></frame> <frame>A</frame> </frameset></frameset>
<meta http-equiv="refresh" content="3;URL=index.jsp">
Should it be written in index.jsp or A?
<script type="text/javascript">window.onload = function() { setTimeout('self.parent.location.reload()', 3000);}</script>
You can also use window.top:
<script type="text/javascript">window.onload = function() { setTimeout('window.top.location = "index.jsp";', 3000);}</script>
Use script!