Causes the object to scroll into view, aligning it either at the top or bottom of the window.
Syntax
object.scrollIntoView(varargStart)Standards information
There are no standards that apply here.
Parameters
- varargStart [in, optional]
-
Type: Variant
Variant of type Boolean that specifies one of the following values:
Return value
Type: HRESULT
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Remarks
The scrollIntoView method is useful for immediately showing the user the result of some action without requiring the user to manually scroll through the document to find the result.
Depending on the size of the given object and the current window, this method might not be able to put the item at the very top or very bottom, but will position the object as close to the requested position as possible.
Examples
This example uses the scrollIntoView method to underline the content of the document's fifth paragraph and scroll it into view at the top of the window.
var coll = document.all.tags("P");
if (coll.length >= 5)
{
coll(4).style.textDecoration = "underline";
coll(4).scrollIntoView(true);
}
See also
- a
- address
- applet
- area
- b
- big
- blockQuote
- br
- button
- caption
- center
- cite
- code
- col
- colGroup
- comment
- controlRange
- custom
- dd
- dfn
- dir
- div
- dl
- dt
- em
- embed
- fieldSet
- font
- form
- hn
- hr
- i
- iframe
- img
- input type=button
- input type=checkbox
- input type=file
- input type=image
- input type=password
- input type=radio
- input type=reset
- input type=submit
- input type=text
- kbd
- label
- legend
- li
- listing
- map
- marquee
- menu
- noBR
- object
- ol
- p
- plainText
- pre
- s
- samp
- select
- small
- span
- strike
- strong
- sub
- sup
- table
- tBody
- td
- textArea
- TextRange
- tFoot
- th
- tHead
- tr
- tt
- u
- ul
- var
- wbr
- xmp
Send comments about this topic to Microsoft
Build date: 11/8/2012