Skip to content

Instantly share code, notes, and snippets.

@anthony9981
Last active August 25, 2024 08:26
Show Gist options
  • Select an option

  • Save anthony9981/f7c6854979c3a2151eacfe5db05a7e8f to your computer and use it in GitHub Desktop.

Select an option

Save anthony9981/f7c6854979c3a2151eacfe5db05a7e8f to your computer and use it in GitHub Desktop.
[Code Snipppet] Tự động click try again khi tiến trình bị gián đoạn cho plugin wp all import
setInterval(function() {
if (jQuery('#wpallimport-try-again').is(':visible')) {
jQuery('#wpallimport-try-again').click();
}
}, 5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment