Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(document).ready(function() {
  2. console.log("hi");
  3. function check_for_button() {
  4. if ($('div.react-grid-Toolbar .tools button.btn').length) {
  5. $('div.react-grid-Toolbar .tools button.btn').style.display = 'none';
  6. } else {
  7. setTimeout(check_for_button, 1000);
  8. }
  9. }
  10. document.title = "This is the new page title.";
  11. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement