SunQuest
 
           JavaScript Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsProgrammingJavaScript Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
Ajax Application Generator Generate database and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!
  #1  
Old December 16th, 2004, 05:37 AM
marc.nard marc.nard is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Nov 2002
Posts: 5 marc.nard User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 10 m 36 sec
Reputation Power: 0
Does an element have the focus??

Hi everyone
I'm a newbye in javascript

My problem is
I want to know if an element of a form has the focus with a simple if statement
something like that:

if (document.formName.elementName.focus()==true)

what is wrong in my syntax?
Is this the correct method?
can anyone help me?

thanks in advance
marco

Reply With Quote
  #2  
Old December 16th, 2004, 10:20 AM
MadCowDzz's Avatar
MadCowDzz MadCowDzz is offline
I'm Internet Famous
Dev Articles Frequenter (2500 - 2999 posts)
 
Join Date: Jan 2003
Location: Toronto, Canada
Posts: 2,890 MadCowDzz User rank is Lance Corporal (50 - 100 Reputation Level)MadCowDzz User rank is Lance Corporal (50 - 100 Reputation Level)MadCowDzz User rank is Lance Corporal (50 - 100 Reputation Level) 
Time spent in forums: 1 Week 16 h 4 m 48 sec
Reputation Power: 8
What's wrong with your code is that by calling the focus() method, you're setting the focus... I presume that line would *always* return true...

I'm not sure if this is the best solution, but you could always set a global variable onBlur...

example:
<input type="text" name="firstName" onBlur="changeState(this, false)" onFocus="changeState(this, true)"/>

Perhaps the method would look like:
Code:
var nameFocus=false;
function changeState(obj, b) {
   if(obj.name=="firstName") {
      nameFocus=b;
   }
}


This code is entirely untested and presumed not to work... perhaps it will give you a hint as to the direction to guide you to find an answer.

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingJavaScript Development > Does an element have the focus??


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway