Window.find()

Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

Note:  Support for window.find() might change in future versions of Gecko . See bug 672395.

Summary

Finds a string in a window.

Syntax

JavaScript
window.find(aString, aCaseSensitive, aBackwards, aWrapAround,
            aWholeWord, aSearchInFrames, aShowDialog);
aString
The text string for which to search.
aCaseSensitive
Boolean value. If true, specifies a case-sensitive search.
aBackwards
Boolean. If true, specifies a backward search.
aWrapAround
Boolean. If true, specifies a wrap around search.
aWholeWord Unimplemented
Boolean. If true, specifies a whole word search. This is not implemented; see bug 481513.
aSearchInFrames
Boolean. If true, specifies a search in frames.
aShowDialog
Boolean. If true, specifies a show Dialog.

Returns

true if the string is found; otherwise, false.

Example

--

Notes

--

Specification

This is not part of any specification.

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/window/find

API DOM DOM_0 Gecko Method NeedsContent NeedsExample Non-standard