Created
January 9, 2015 15:11
-
-
Save twxxk/de68fcff4b47d82ee553 to your computer and use it in GitHub Desktop.
^https?://.*\.salesforce\.com/01p
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.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