Spaces:
Running
Running
document.addEventListener('DOMContentLoaded', function() { | |
var link = document.getElementById('Ibs_Module-link'); | |
var currentIp = window.location.hostname; // Get the current IP address | |
var newPort = '3024'; // New port number | |
link.addEventListener('click', function(event) { | |
event.preventDefault(); | |
var newUrl = 'http://' + currentIp + ':' + newPort; | |
window.open(newUrl, '_blank'); | |
}); | |
}); | |