File size: 525 Bytes
571f20f
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
document.addEventListener('DOMContentLoaded', function() {
            var link = document.getElementById('Strep_Module-link');
            var currentIp = window.location.hostname;  // Get the current IP address
            var newPort = '3026';  // New port number
            
            link.addEventListener('click', function(event) {
                event.preventDefault();
                var newUrl = 'http://' + currentIp + ':' + newPort;
                window.open(newUrl, '_blank');
            });
        });