Ok, so i am changing url when the bootstrap3 modal hidden.bs.modal
event is triggered, here's an example of that
$(document).ready(function(){
$("#exampleModal").on('hidden.bs.modal', function () {
window.location = "http://example.com/example.php?test=1";
});
});
The problem is that when window.location
is set the test
parameter isn't passed. Any suggestions?