|
Dieses JavaScript öffnet eine Alert-Box wenn jemand auf die Seite möchte.
Autor: unbekannt
zur Demo
<script LANGUAGE="JavaScript">
<!--//modified by Coffeecup.com <!--gefunden auf http://www.scriptwelt.org -->
function Info()
{
if (!confirm("Sind Sie älter als 6 Jahre?"))
history.go(-1);return " "
}
document.writeln(Info())
</script>
|