blob: 2718bbc9d7fc845a4801f6dea141411de863ccc7 (
plain)
1
2
3
4
5
6
7
8
9
|
document.addEventListener('DOMContentLoaded', function() {
document.getElementById('currency-form').addEventListener('submit', function(e) {
e.preventDefault();
const select = this.querySelector('select');
if (select.value) {
window.open(select.value, '_blank');
}
});
});
|