en.javascript.info/7-frames-and-windows/6-clickjacking/top-location.view/iframe.html
Ilya Kantor 1f61c2ab1d ok
2017-03-15 00:43:43 +03:00

18 lines
No EOL
215 B
HTML

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div>Меняет top.location на javascript.ru</div>
<script>
top.location = 'http://javascript.ru';
</script>
</body>
</html>