I am trying to move the page to a <div> element.
I have tried the next code to no avail:
document.getElementById("divFirst").style.visibility = 'visible';
document.getElementById("divFirst").style.display = 'block';
|
I am trying to move the page to a I have tried the next code to no avail:
|
||||
|
You can use an anchor to "focus" the div. I.e:
and then use the following javascript:
|
|||||||||||||
|
|
your question and the answers looks different. I don't know if I am mistaken, but for those who googles and reach here my answer would be the following: My Answer explained: here is a simple javascript for that call this when you need to scroll the screen to an element which has id="yourSpecificElementId"
ie. for the above question, if the intention is to scroll the screen to the div with id 'divFirst' the code would be: and you need this function for the working:
the screen will be scrolled to your specific element. |
|||
|
|
|
Focus can be set on interactive elements only... Div only represent a logical section of the page. Perhaps you can set the borders around div or change it's color to simulate a focus. And yes Visiblity is not focus. |
|||
|
|
|
I think that if you add a tabindex to your div, it will be able to get focus:
I don't think it's valid though, tabindex can be applied only to a, area, button, input, object, select, and textarea. But give it a try. |
|||
|
|
You can't focus on a div. You can only focus on an input element in that div. Also, you need to use element.focus() instead of display() |
|||
|
|
Try this:
e.g @: |
|||
|
visibilityanddisplayare used for making elements (in)visible. Do you want to scroll the div in the screen? – Lekensteyn Feb 15 '11 at 18:05