Guest User

Untitled

a guest
Apr 2nd, 2018
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function() {
  2.  
  3.   // проверяем поддержку
  4.   if (!Element.prototype.closest) {
  5.  
  6.     // реализуем
  7.     Element.prototype.closest = function(css) {
  8.       var node = this;
  9.  
  10.       while (node) {
  11.         if (node.matches(css)) return node;
  12.         else node = node.parentElement;
  13.       }
  14.       return null;
  15.     };
  16.   }
  17.  
  18. })();
Advertisement
Add Comment
Please, Sign In to add comment