Skip to content

Instantly share code, notes, and snippets.

@dannylloyd
Created February 19, 2012 00:05
Show Gist options
  • Save dannylloyd/1861369 to your computer and use it in GitHub Desktop.
Save dannylloyd/1861369 to your computer and use it in GitHub Desktop.
Red dead redemption social club bounty easy finder
$('.panelBountyHunterUniqueLocations a').each(function(index) {
$(this).parents('div').append(' ' + $(this).attr('title') + '<br/>');
});
$('.panelBountyHunterUniqueLocations div').css({
'background-color': 'black',
'color' : 'white',
'text-align' : 'left',
'width': '500px', 'position' : 'relative',
'font-size' : '12px',
'padding' : '10px 0 10px 0'
});
$('.panelBountyHunterUniqueLocations').css({
'position': 'absolute',
'top': '0',
'left': '0',
'z-index' : '10000'
}).appendTo('body');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment