Skip to content

Instantly share code, notes, and snippets.

@kejun91
Created December 13, 2015 10:49
Show Gist options
  • Save kejun91/9e9b3d719e64c972706c to your computer and use it in GitHub Desktop.
Save kejun91/9e9b3d719e64c972706c to your computer and use it in GitHub Desktop.
JavaScript Hacking on Salesforce UI
(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