Files
CDRM-Project/static/js/devine.js
CDM-Project 0e04cb1285 Reupload
2024-09-08 20:13:39 -04:00

8 lines
336 B
JavaScript

document.addEventListener('DOMContentLoaded', function() {
// Get the current URL from the address bar
var currentURL = window.location.href;
// Set the current URL value in the paragraph
document.getElementById('currentURL').innerText = currentURL;
document.getElementById('currentURI').innerText = currentURL;
});