Skip to content

Instantly share code, notes, and snippets.

View mtHuberty's full-sized avatar

Matt Huberty mtHuberty

  • Technology Partners
  • St. Louis, MO
View GitHub Profile
@mtHuberty
mtHuberty / extract.js
Created December 23, 2020 19:05 — forked from leobossmann/extract.js
Extract and rename images from Pixieset
var imgs = new Array;
// replace all images by the xxl version
$('li > img').each(function(i, item){
var new_src = $(item).prop('src').replace('large', 'xxlarge');
$(item).prop('src', new_src);
imgs.push($(item));
});
// kill everything on page
$('body').empty();