i Wan't to know that what does getElementById Do in js?
we also use that in CrossSiteScripting attacks,
thanks
|
i Wan't to know that what does getElementById Do in js? we also use that in CrossSiteScripting attacks, thanks |
|||
|
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Most html constructs have an element called "id" which must be unique in the whole html page. Such as |
|||
|
|
It returns an element from the HTML document that has the ID attribute set to the value you ask for. For example, the JavaScript
will return the first element found that matches that ID, such as
I say the "first element found" because that's exactly what will happen--by definition, IDs must be unique in the page. Each HTML page must have only 1 ID of the same name. If you violate this rule, you'll get unexpected results. |
|||
|
|
|
Lets use this page as an example:
If you want to look at what all it can do on a live page I would suggest getting Firefox and install the Firebug addon. This will let you see all of the DOM things and play with them without having to re-save a page. |
|||
|
|
|
it gets a DOM Element By its Id |
||||
|