Skip to content

Instantly share code, notes, and snippets.

@Dkendal
Created April 7, 2017 20:11
Show Gist options
  • Select an option

  • Save Dkendal/ea1fe8c2d25dfdc752e8547815c0878f to your computer and use it in GitHub Desktop.

Select an option

Save Dkendal/ea1fe8c2d25dfdc752e8547815c0878f to your computer and use it in GitHub Desktop.
Get First parent with computed value in JS
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