• Das Erstellen neuer Accounts wurde ausgesetzt. Bei berechtigtem Interesse bitte Kontaktaufnahme über die üblichen Wege. Beste Grüße der Admin

target=_top

vallelis

New member
Hallo !

I want just call a page through a function
functionname() with a target "_top".
Doesn't work this way :

<a href="javascript:renvoi()" target="_top">

What is the right way ?

I have searched the forum but nothing found.
Thanks a lot in advance !

-Steve
 
hi vallelis,

<head>

<script...>
<!--
funktion renvoi() {
top.location.href = 'seite.html';
}
//-->
</script>

</head>
<body>

<a href="javascript:renvoi()">

</body>

gruss
René
 
Zurück
Oben