Skip to content

Instantly share code, notes, and snippets.

@kevinmarx
Created November 5, 2012 23:30
Show Gist options
  • Save kevinmarx/4021104 to your computer and use it in GitHub Desktop.
Save kevinmarx/4021104 to your computer and use it in GitHub Desktop.
Remove the image size designator on the thumbnail image in the News Article page.
// For each image of the feed
$j('.newsPreviewThumb').each(function() {
var src = $j(this).attr('src');
// Find and replace the _thumb. so we have a large image to work with
$j(this).attr('src', src.replace(/_thumb\.(png|jpg|jpeg|gif)$/, '.$1'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment