Die Funktion soll dafür sorgen, dass ein anderes eine andere Funktion abbricht wenn ein bestimmtes Ereignis zutrifft. Da die Funktion, die die Funktion go2index(); aufruft, abbrechen soll, denke ich, dass es so am sinnvollsten ist:
Funktion.1()
{
if(ereignis == true)
{
return go2index();
}
else
{
[...]
}
[...]
}
function go2index()
{
return window.location.href='/index.php';
}
--
lg Torben
lg Torben