mirror of
https://cdm-project.com/CDM-Project/CDRM-Project.git
synced 2026-04-02 15:28:13 +00:00
8 lines
336 B
JavaScript
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;
|
|
}); |