en.javascript.info/3-frames-and-windows/06-clickjacking/top-location.view/iframe.html
2019-04-02 14:01:44 +03:00

18 lines
214 B
HTML

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div>Changes top.location to javascript.info</div>
<script>
top.location = 'https://javascript.info';
</script>
</body>
</html>