- From: Ian Hickson <ian@hixie.ch>
- Date: Wed, 2 May 2012 22:13:00 +0000 (UTC)
On Fri, 28 Oct 2011, David H?s?ther wrote: > > It would be more useful if the DOMTokenList methods (contains, add, > remove, toggle) would take a space separated list of tokens. This is the > behavior most DOM libraries have when dealing with class names. > > So, when setting two classes, instead of > > ele.classList.add("hey"); > ele.classList.add("ho"); > > you could do > > ele.classList.add("hey ho"); > > Currently, the latter results in an INVALID_CHARACTER_ERR. > > The behavior of all methods should be obvious I guess. This has now moved to DOM Core. If you still want this I recommend filing a bug on that spec. http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html On Fri, 28 Oct 2011, Mike Taylor wrote: > > I would prefer if it returned the DOMTokenList, to enable chaining like: > > foo.toggle('bar baz').remove('bat'); That makes for very hard to read code, IMHO. I much prefer: foo.toggle('bar'); foo.remove('bat'); -- Ian Hickson U+1047E )\._.,--....,'``. fL http://ln.hixie.ch/ U+263A /, _.. \ _\ ;`._ ,. Things that are impossible just take longer. `._.-(,_..'--(,_..'`-.;.'
Received on Wednesday, 2 May 2012 15:13:00 UTC