I have Page1.html, which contains a drop-down menu ('s) inside a form, with a submit button. The options include Color, and Shape.
Now let's say I have an assortment of shapes displayed on Page2.html. Blue Square, Red Square, Blue Circle, Red Circle all showing on Page2.html.
Is it possible to have a JavaScript file where the JavaScript file will read what the values are on the Page1.html form, and upon clicking the submit button, will redirect to Page2.html with filtered results?
So I select the color 'blue', and the shape 'square', hit submit, and then have it redirect me to Page2.html where it hides every shape other than the Blue Squares (the one I have filtered out), or perhaps they are all hidden and it displays them?
I appreciate any answers!