Skip to content

Instantly share code, notes, and snippets.

@simondell
Last active December 23, 2015 16:39
Show Gist options
  • Save simondell/6663926 to your computer and use it in GitHub Desktop.
Save simondell/6663926 to your computer and use it in GitHub Desktop.
Regex to get parts of an image URL out of the string returned from elem.style.backgroundImage.
// finds an image path in the string returned from elem.style.backgroundImage
var = rgx = /(?:url\(['"]?)(\w[a-z-.\/]+)(?:['"]?\))/g;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment