4

i am using mvc and jquery in my application i have the routing url like this :

ID/Controller/Action

I want to get the URL and split it to get the id in jquery

Slava Rozhnev
  • 9,510
  • 6
  • 23
  • 39
Eslam Soliman
  • 1,276
  • 5
  • 16
  • 42

2 Answers2

14

You can split the pathname from the moment you get it:

var pathname = window.location.pathname.split( '/' );

Once you have it split, you can access any part of the pathname as follows:

var path_id = pathname[1];
var path_controller = pathname[2];
var path_action = pathname[3];
Jose Gonzalez
  • 141
  • 1
  • 5
6
  var pathname = window.location.pathname;
  var appId = pathname.split('/')[1];

i see that your first param is the id with this piece of code you can get the id in jquery

Eslam Soliman
  • 1,276
  • 5
  • 16
  • 42