window.onscroll = function(e) {
if(scrollY > 300) play();
}
Это экспериментальная технология, часть предложения Harmony (ECMAScript 6).
(function(ELEMENT) {
ELEMENT.matches = ELEMENT.matches || ELEMENT.mozMatchesSelector || ELEMENT.msMatchesSelector || ELEMENT.oMatchesSelector || ELEMENT.webkitMatchesSelector;
ELEMENT.closest = ELEMENT.closest || function closest(selector) {
if (!this) return null;
if (this.matches(selector)) return this;
if (!this.parentElement) {return null}
else return this.parentElement.closest(selector)
};
}(Element.prototype));
https://developer.mozilla.org/ru/docs/Web/API/Element/closest