Reputation: 2702
I am trying to use window.location to redirect to a relative url
this variable
var redirect = $(this).attr('title');
has this value
../../000_Movies/_assets/playlist.html
this wont redirect
window.location = redirect;
Upvotes: 4
Views: 15535
Reputation: 5647
If you want to redirect to relative pages you should use:
window.location.href = "../../000_Movies/_assets/playlist.html";
Upvotes: 7