Get link Facebook X Pinterest Email Other Apps July 13, 2023 Video Downloader Video Downloader Video Downloader Download Download function downloadVideo() { var videoUrl = document.getElementById("videoUrl").value; // Make a POST request to the server-side script fetch('/download', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ url: videoUrl }) }) .then(response => response.json()) .then(data => { if (data.success) { document.getElementById("status").textContent = "Video downloaded successfully!"; } else { document.getElementById("status").textContent = "Error downloading video."; } }) .catch(error => { console.error('Error:', error); document.getElementById("status").textContent = "An error occurred."; }); Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment