Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. var t = document.createElement('div');
  2. document.documentElement.appendChild(t);
  3. t.setAttribute('id', 'redirection_popup');
  4. var styleForDiv = 'position:fixed;bottom:0px;left:0px; width:100%;padding:13px 35px;border-radius:3px; box-shadow:0px 1px 3px rgba(0,0,0,.1);background:#f3f3f3;';
  5. t.setAttribute('style', styleForDiv);
  6.  
  7. var p = document.createElement('p');
  8. var styleForP = 'font-size:13px; color:rgba(0,0,0,.9);font-family:sans-serif;';
  9. p.setAttribute('style', styleForP);
  10. p.innerHTML = "Redirection Enabled: Your search has been redirected through searchissimo.net to prevent tracking & profiling by other search engines. <a target='_blank' href='https://searchissimo.net/help'>Learn More</a>";
  11.  
  12. t.appendChild(p);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement