good time of day, such a task there is a link when you hover on them opens a new window one window opened and subsequent guidance updated it
1 answer
<a target="framename" onmouseover='fun()' href="ссылка">Link</a> <script type="text/javascript"> function fun(event) { window.open("https://google.com","game",opener); } </script> You need parameters in window.open () to read about them here.
|