I am trying to use window.location to redirect to relative URL
this variable
var redirect = $(this).attr('title');
it matters
../../000_Movies/_assets/playlist.html
it will not be redirected
window.location = redirect;
If you want to redirect to relative pages, you should use:
window.location.href = "../../000_Movies/_assets/playlist.html";
You can use:
window.location.href = $(this).attr('title');
Source: https://habr.com/ru/post/1403933/More articles:ParaView crashes when loading a large ASCII VTK file - vtkHow to remove javascript object object by value? - javascriptLike # intepreted in Guid / UNIQUEIDENTIFIER (SQL Server) - c #The server did not provide a meaningful response, this can be caused by a contract mismatch, a premature disconnection of the session, or an internal server error - c #How do I animate a swing element in CSS3? - csshttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1403934/are-there-benefits-to-quick-exiting-a-method-or-constructor&usg=ALkJrhizZaJts80w--v4JjOmnhnVr51JyAWCF binding configuration is only applied by default, but by name it fails - configurationLINQ Where is the operator in the collection - vb.netHow do I request the number of number views to publish in Wordpress JetPack? - statisticsCorrect RESTful url convention for application service calls? - restAll Articles