I have an unknown number of <img> elements on my page with no IDs, and I need to be able to browse through them and set certain attributes based on a number of unpredictable factors.
|
|
||||
|
|
|
Use
|
|||
|
You would use this function to browse through them as an array:
This is an array of
If the factors you are speaking about are really complicated, I would use jQuery (it's really powerful):
This would add a Good luck! |
|||
|
|
|
Everyone forgets about
If you need to get images within another element, you can use
|
|||||
|
|
You can use getElementsByTagName to get a list of the img tags: https://developer.mozilla.org/en/DOM/element.getElementsByTagName |
|||
|
|
|
You can set name attribue for image tag and can perform any operation using document.getElementsByName. for example
|
|||
|
|
|
Use jQuery and search by element type $("img").each() to perform am operation on each element |
|||
|
|
|
jQuery is probably your best bet. Otherwise you'll have to traverse a dom tree and check for attributes manually. Once you use jQuery you can select elements by attributes like name, class, the tag name (input, image, etc) and combinations of them.
|
|||
|
|
|
It's hard to answer this without knowing more specifics, but have you considered using Jquery? |
|||
|
|