Offline Notepad View raw

Shared snapshot

9c2c649d

<script>
    let urls = [
        'https://offlinenotepad.com',
        'https://www.literallyanything.io/iterate?id=TxpZxt9ODCu5ylykL3NU',
        'https://www.literallyanything.ioiterate?id=q29o2nG1g8imRdJ3I49J'
    ];
    let currentUrlIndex = 0;

    function updateIframe() {
        const url = document.getElementById('iframeUrl').value;
        document.getElementById('iframe2').src = url;
    }

    function copyToClipboard(elementId) {
        const text = document.getElementById(elementId).innerText;
        navigator.clipboard.writeText(text).then(() => {
            alert('Copied to clipboard: ' + text);
        });
    }

    function nextUrl() {
        currentUrlIndex = (currentUrlIndex + 1) % urls.length;
        document.getElementById('iframeUrl').value = urls[currentUrlIndex];
        updateIframe();
    }

    function previousUrl() {
        currentUrlIndex = (currentUrlIndex - 1 + urls.length) % urls.length;
        document.getElementById('iframeUrl').value = urls[currentUrlIndex];
        updateIframe();
    }
</script>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js"></script>