Created
December 13, 2015 10:49
-
-
Save kejun91/9e9b3d719e64c972706c to your computer and use it in GitHub Desktop.
JavaScript Hacking on Salesforce UI
This file contains hidden or 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
(function(){var allRows = document.querySelectorAll('tr.dataRow td a.actionLink'); for(var i = 0; i < allRows.length; i++){var xhr = new XMLHttpRequest(); xhr.open('GET',allRows[i].href,true); xhr.send();}})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment