Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] shortcuts


  • From: list at tridemail.de (Michael Borchers)
  • Subject: [Javascript] shortcuts
  • Date: Wed May 24 08:17:04 2006

i want to offer a navigation via shotcuts.
i did it this way so far:

<a href="#" onfocus="javascript:redirectByShortcut('<?php echo 
CONTACTS_FILENAME; ?>?select=1');" accesskey="c"></a>

function:
function redirectByShortcut(redirectUrl)
{
 top.location.href = redirectUrl;
}

works fine.
but isn't it possible and even better to do it by hidden input fields?!!