タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

JavaScriptとDOMとPromisesに関するefclのブックマーク (1)

  • About document.ready

    About document.readyThere is some effort going on, documented the WHATWG standard repository, in order to bring a document.ready Promise like behavior to any page. Today, a simple tweet of mine simplified the fuss: document.ready = new Promise(r => /^loaded|complete$/.test(document.readyState) ? r() : document.addEventListener('DOMContentLoaded', r)); — Andrea Giammarchi (@WebReflection

    About document.ready
    efcl
    efcl 2016/05/13
    Promiseを返す`document.ready`をどう実装するかという話。 `document.readyState`とp`DOMContentLoaded`について
  • 1