Wenn ich eine URL wie diese habe:
http://localhost:53830/Organisations/1216/View
Möchte ich den ersten Teil des URL-Pfads im Kleinbuchstabenformat alertieren, z. B. 'organisations'
Bis jetzt habe ich:
var first = $(location).attr('pathname');
first.indexOf(1);
first.replace('/', '');
first.toLowerCase();
alert(first);
aber es funktioniert nicht wie beabsichtigt. Kann jemand helfen? Danke