</> ScriptJerk Online

Copy paste code, notes, and receipts into dedicated pages.

Drop text here, create a clean reference link, and come back to it later. Simple on purpose: no account wall, no database ceremony, no dashboard maze.

this pages source

html / May 8, 2026 6:58 AM / 1,320 bytes
Raw

</head>
<body>
<body data-theme="dark">
  <div class="shell">
        <a class="btn" href="https://scriptjerk.store/">Store</a>
        <label class="theme-picker" for="themeSelect">
          <span>Theme</span>
          <select id="themeSelect" aria-label="Theme">
            <option value="dark">Dark</option>
            <option value="middle">Inbetween</option>
            <option value="light">Light</option>
          </select>
        </label>
      </nav>
  <script>
    const themeSelect = document.getElementById('themeSelect');
    const savedTheme = localStorage.getItem('scriptjerk-online-theme') || 'dark';

    function setTheme(theme) {
      const allowed = ['dark', 'middle', 'light'];
      const nextTheme = allowed.includes(theme) ? theme : 'dark';
      document.body.dataset.theme = nextTheme;
      localStorage.setItem('scriptjerk-online-theme', nextTheme);
      if (themeSelect) themeSelect.value = nextTheme;
    }

    setTheme(savedTheme);

    if (themeSelect) {
      themeSelect.addEventListener('change', (event) => {
        setTheme(event.target.value);
      });
    }

    async function copyValue(id) {
  </style>
  <link rel="stylesheet" href="/style.css?v=20260508">
  <link rel="stylesheet" href="/style.css?v=20260508-theme1">
</head>