Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

get tab focus

Status
Not open for further replies.

dijo123

Programmer
Jan 13, 2004
30
SE
Hello,
How do I get the Id of a node that is tabbed(focused)?
I have a menu mainly made by div tags and a-tags. If the user tabulate to a special menu I want to save that id into a cookie. Next time I would like to get the cookie and make that menu focused again.

I want this to happen on onUnload().
Some of my code:

Code:
<div id="menu0" class="clF">&nbsp;
	<span></span>
	<a href="template_07.htm" class="clS">Cars</a><br>
	<span></span>&nbsp;
	<a href="template_07.htm" class="clS">Bikes</a><br>
 
-I can't call a function when I click on the link.(I get bad performance then.)
-getElementsByTagName don't work on my browser.
I have tried document.getSelection(), it did not work. I don't know why, maybe because my browser just support JavaScript language version 1.4. and a subset of the W3C
DOM level 1. I wrote var f=document.getSelection(); when a text was selected, but it failed.

/Diana
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top