function findNextElement()

in antora-ui-hop/src/js/01-nav.js [158:161]


  function findNextElement (from, selector) {
    var el = from.nextElementSibling
    return el && selector ? el[el.matches ? 'matches' : 'msMatchesSelector'](selector) && el : el
  }