Skip to content

Instantly share code, notes, and snippets.

@sarahjean
Created October 24, 2013 21:46
Show Gist options
  • Select an option

  • Save sarahjean/7145611 to your computer and use it in GitHub Desktop.

Select an option

Save sarahjean/7145611 to your computer and use it in GitHub Desktop.
DevTools snippet to find css files with certain names in them, in this case generated by the css_injector drupal module
var links = new Array();
var path_chunk = 'css_injector';
$("link").each(function() {
var css = $(this);
if (css.attr("href").indexOf(path_chunk) >= 0) {
links.push(css.attr("href"));
}
});
console.log(links);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment