Skip to content

Instantly share code, notes, and snippets.

@twxxk
Created January 9, 2015 15:11
Show Gist options
  • Save twxxk/de68fcff4b47d82ee553 to your computer and use it in GitHub Desktop.
Save twxxk/de68fcff4b47d82ee553 to your computer and use it in GitHub Desktop.
^https?://.*\.salesforce\.com/01p
$('.rolodex a').each(function(i, a){
var $a = $(a);
var href = $a.attr('href');
if (href.indexOf('rowsperpage=') < 0) {
href += 'rowsperpage=3500';
$a.attr('href', href);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment