$(document).ready(function(){ var url = "http://relaunch.domain.local/projekte"; var arguments = url.split('http')[1].split('//'); arguments.shift(); alert(arguments) });
relaunch
var arguments = url.split('//')[1].split('.')[0];
const url = new URL("https://test.host.local/path/to/page?foo=bar"); const name = url.hostname.split('.')[0]; alert(name); // "test"
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)