Here my var =
var path = 'http://www.google.com/test/';
how to remvoe the last forward slash or test/
Thanks in advance
Here my var =
var path = 'http://www.google.com/test/';
how to remvoe the last forward slash or test/
Thanks in advance
Try this:
var path = 'http://www.google.com/test/';
var lastIndex = path.lastIndexOf('/');
path = path.substring(0, lastIndex);
//becomes http://www.google.com/test
just remember that if you have http://www.google.com/test/index.html as your path it will become http://www.google.com/test
Thanks stbuchok, Its done
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.