Good day! Help, please solve the problem. It is required to realize the opening of the page in the frame for the entire width of the window with the ability to walk on the links, but after a certain time has elapsed, the original page should be returned. You can of course do this:
<html> <head> <meta http-equiv="content-type" content="text/html" /> <meta name="author" content="" /> <script src="/jquery-3.0.0.min.js"></script> <meta http-equiv="Refresh" content="60" /> <title></title> <style> html, body, div, iframe {margin:0;padding:0;height:100%;} iframe {display:block;width:100%;border:none;} </style> </head> <body> <div><iframe src=">"></iframe></div> </body> </html> But it is important that when you click on any link, the time begins anew.
Is it even possible to implement this?