0

i have one url Like http://www.example.com/wall/post/1234568929842184
now i want to take the number after post/ from my url from javascript or jquery.

bliveinhack
  • 40
  • 1
  • 8

1 Answers1

0

Have a look here.

In your case:

var href = window.location.href;
window.alert(href.substr(href.lastIndexOf('/') + 1));
Community
  • 1
  • 1
Mathijs Flietstra
  • 12,900
  • 3
  • 38
  • 67