HenryEx

unclickable.js

Jul 17th, 2022 (edited)
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /** @param {NS} ns **/
  2. export async function main(ns) {
  3.     document.getElementById('unclickable').style = "display: block;position: absolute;top: 50%;left: 50%;width: 100px;height: 100px;z-index: 10000;background: red;";
  4.     document.getElementById('unclickable').parentNode.addEventListener('click', () => {
  5.         document.getElementById('unclickable').style = "display: none; visibility: hidden;";
  6.     }, true);
  7. }
Add Comment
Please, Sign In to add comment