Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to focus on a <div> using javascript focus() function?

I have a <div> tag

<div id="tries">You have 3 tries left</div>

I am trying to focus on the above <div> using :

document.getElementById('tries').focus();

But it doesn't work. could someone suggest something....?

share|improve this question
1  
What do you mean by focusing on a <div>? – KennyTM Sep 7 '10 at 7:14
1  
What do you want to happen when you 'focus' it? Divs don't accept input, so do you want to flash the border, or flash a background highlight etc? – Michael Shimmins Sep 7 '10 at 7:14
@Michael, yes I need that <div> to fetch the attention of user... – OM The Eternity Sep 7 '10 at 7:17

6 Answers

up vote 10 down vote accepted
window.location.hash = '#tries';

This will scroll to the element in question, essentially "focus"ing it.

share|improve this answer
Grt it Worked..... thanks Man – OM The Eternity Sep 7 '10 at 7:30

Yes - this is possible. In order to do it, you need to assign a tabindex...

<div tabindex="0">Hello World</div>

A tabindex of 0 will put the tag "in the natural tab order of the page". A higher number will give it a specific order of priority, where 1 will be the first, 2 second and so on.

You can also give a tabindex of -1, which will make the div only focus-able by script, not the user.

share|improve this answer
1  
wow. Is it cross browser? – Mic Sep 7 '10 at 7:25
And what if in place of <div> tag I am using <td>? – OM The Eternity Sep 7 '10 at 7:27
But this doesn't bring it to the user's attention, it simply makes it tabable. – Michael Shimmins Sep 7 '10 at 7:28
1  
@Michael Shimmins, This allows the element to be focusable (in a non-standard way!) with focus(). – strager Sep 7 '10 at 7:34
IE does not support this :( – Babu James Feb 28 at 6:26

document.getElementById('tries').scrollIntoView() works. This works better than window.location.hash when you have fixed positioning.

share|improve this answer
Awsome, it works for Chrome 23 – Ozhan Duz Nov 22 '12 at 20:15

To make the border flash you can do this:

function focusTries() {
    document.getElementById('tries').style.border = 'solid 1px #ff0000;'
    setTimeout ( clearBorder(), 1000 );
}

function clearBorder() {
    document.getElementById('tries').style.border = '';
}

This will make the border solid red for 1 second then remove it again.

share|improve this answer

I wanted to suggest something like Michael Shimmin's but without hardcoding things like the element, or the CSS that is applied to it.

I'm only using jQuery for add/remove class, if you don't want to use jquery, you just need a replacement for add/removeClass

--Javascript

function highlight(el, durationMs) { 
  el = $(el);
  el.addClass('highlighted');
  setTimeout(function() {
    el.removeClass('highlighted')
  }, durationMs || 1000);
}

highlight(document.getElementById('tries'));

--CSS

#tries {
    border: 1px solid gray;
}

#tries.highlighted {
    border: 3px solid red;
}
share|improve this answer

Yes. it posiible. it will fires onFocus handler

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.