Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTMLCollection object extensions?

Tags:

javascript

dom

I found that HTMLOptionsCollection object inherits properties and methods from HTMLCollection.

HTMLOptionsCollections->HTMLCollection->Object->null

Is there any other type that also inherits HTMLCollection?

like image 594
P K Avatar asked Jan 31 '26 16:01

P K


1 Answers

You'll find other DOM interfaces which should inherit from HTMLCollection in the HTML5 spec:

http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#collections-0

However, these objects are not necessarly actually implemented in current browsers.

like image 99
Claude Avatar answered Feb 03 '26 06:02

Claude