<a href="http://google.com" onClick="alert('Du forlater nå siden!\n\nTakk for besøket.');return true">Google</a>
<style type="text/css">
.link span {
display : none;
}
.link :hover span {
position : absolute;
display:block;
font-size:13px;
border : 1px solid #000000;
width : 300px;
height : 120px;
color : #000000;
text-align : center;
padding:10px;
}
.link a:link {
text-decoration:none;
}
.link a:hover{
text-decoration: none;
}
</style>
<div class="link"><a href="http://www.vg.no" title="">VG.no<span class="link">Gå hit????<br />Det synes ikke jeg at du burde i grunn..<br />men-men..<br />God tur til vg.no, da mann!!)</span></a></div>
Har du eksempler på hvor dette brukes?
Mener jeg har sett noe lignende på noen clickbank-sider, men ikke helt sikker.
<html>
<head>
<title>JS-popup</title>
<script type="text/javascript">
function popup() {
alert('Not so fast!');
//Kode som skal kjøres
}
</script>
<style type="text/css">
#popup {
width: 100%;
height: 1px;
position: fixed;
top: 0px;
background-color: none;
}
</style>
</head>
<body>
<div id="popup" onmouseout="popup()">
</div>
</body>
</html>