Univerter/static/main.js

17 lines
480 B
JavaScript
Raw Normal View History

2023-05-05 11:15:22 -05:00
function gamer() {
const quality = document.getElementById('quality')
const filename = document.getElementById('filename')
const format = document.getElementById('format')
const downloadBtn = document.getElementById('download')
downloadBtn.innerText = "Downloading file..."
var url = $("#url").text()
var message = {
'url': url,
'quality': quality.value,
'filename': filename.value,
'format': format.value
}
}