Created
April 7, 2017 20:11
-
-
Save Dkendal/ea1fe8c2d25dfdc752e8547815c0878f to your computer and use it in GitHub Desktop.
Get First parent with computed value in JS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function f (x, k, v) { | |
| return Window.getComputedStyle(x)[k] === v && x || x.parentElement && f(x.parentElement) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment