Skip to content

Instantly share code, notes, and snippets.

@ozselgin
Last active May 5, 2022 09:42
Show Gist options
  • Select an option

  • Save ozselgin/304b566d2962263268b50f0a860dc654 to your computer and use it in GitHub Desktop.

Select an option

Save ozselgin/304b566d2962263268b50f0a860dc654 to your computer and use it in GitHub Desktop.
Jquery Click All Links with Selector
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