I'm developing a web app, where each page has an option to filter, for example, one for brands, then the models of those brands, after, the cars and then the years of the car chosen.
I would like to know a way to communicate these pages by passing the chosen options on each page without using PHP , HTML / strong> and JavaScript .
Opening another window to you, using, for example, the code below:
function selectCarro(carro){
window.marca = carro;
var b = window.open("modelos.html");
$(b).load(function(){
b.marca = marca;
b.atualiza();
return;
});
}
The problem is to open the page in the same window, for example with window.location
or open using _self
.
Any solution ??