plaster/public/client.js
2024-12-18 16:57:23 -05:00

8 lines
370 B
JavaScript

document.getElementById('fetchBtn').addEventListener('click', async () => {
const urlInput = document.getElementById('pasteUrl').value;
// Perform a redirection by using the input URL directly
const redirectUrl = `/fetch-paste?url=${encodeURIComponent(urlInput)}`;
window.location.href = redirectUrl; // This redirects the user to the raw paste URL
});