MasterOpel

Save and Load the Current Body (Bookmarklets)

Sep 2nd, 2024 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.20 KB | Source Code | 0 0
  1. /* Save body */
  2. javascript:var storedBody = document.body;
  3.  
  4. /* Load saved body */
  5. javascript:document.body = storedBody;
  6.  
  7. /* Page blanker */
  8. javascript:document.body = document.createElement("body");
Advertisement
Add Comment
Please, Sign In to add comment