Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.     function check_for_button() {
  3.         if ($('div.react-grid-Toolbar .tools button.btn').length) {
  4.             $('div.react-grid-Toolbar .tools button.btn').click();
  5.             $('div.react-grid-Toolbar').hide();
  6.         } else {
  7.             setTimeout(check_for_button, 100);
  8.         }
  9.     }
  10.     check_for_button();
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement