Jordan meant that DOM isn't part of the JS standard. ^_^ So yeah, not
relevant to this list.
On Wed, Nov 28, 2018 at 11:39 AM Isiah Meadows <isiahmead...@gmail.com> wrote:
>
> It *is* part of the DOM itself:
> https://dom.spec.whatwg.org/#interface-eventtarget. Doesn't make this
> any more on-topic here, though.
>
> -----
>
> Isiah Meadows
> cont...@isiahmeadows.com
> www.isiahmeadows.com
> On Wed, Nov 28, 2018 at 2:37 PM Jordan Harband <ljh...@gmail.com> wrote:
> >
> > Neither of these methods, nor the DOM itself, are part of the JS language 
> > standard - you might be thinking of the HTML standard.
> >
> > On Wed, Nov 28, 2018 at 11:28 AM manuelbarzi <manuelba...@gmail.com> wrote:
> >>
> >> make it shorter, simpler and more handy
> >>
> >> deprecate this
> >> ```
> >> EventTarget.addEventListener(...)
> >> EventTarget.removeEventListener(...)
> >> ```
> >>
> >> in pro of
> >> ```
> >> EventTarget.on(...)
> >> EventTarget.off(...)
> >> ```
> >>
> >> make it easier, more intuitive and more readable
> >> ```
> >> button.on(‘click’, e => ...)
> >> form.on('submit', e => ...)
> >> document.on('DOMContentLoaded', () => ...)
> >> ...
> >> ```
> >>
> >> (and reduce code length)
> >> _______________________________________________
> >> es-discuss mailing list
> >> es-discuss@mozilla.org
> >> https://mail.mozilla.org/listinfo/es-discuss
> >
> > _______________________________________________
> > es-discuss mailing list
> > es-discuss@mozilla.org
> > https://mail.mozilla.org/listinfo/es-discuss
> _______________________________________________
> es-discuss mailing list
> es-discuss@mozilla.org
> https://mail.mozilla.org/listinfo/es-discuss
_______________________________________________
es-discuss mailing list
es-discuss@mozilla.org
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to