Last active
May 5, 2022 09:42
-
-
Save ozselgin/304b566d2962263268b50f0a860dc654 to your computer and use it in GitHub Desktop.
Jquery Click All Links with Selector
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
| var script = document.createElement('script'); | |
| script.src = 'https://code.jquery.com/jquery-3.6.0.min.js'; | |
| document.getElementsByTagName('head')[0].appendChild(script); | |
| $(".btn.btn-link.btn-xs.quick-edit").each(function() { $( this ).click();}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment