Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 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').hide();
  6. } else {
  7. setTimeout(check_for_button, 1000);
  8. }
  9. }
  10. check_for_button()
  11. document.title = "This is the new page title.";
  12. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement