Filtering data from another page

Hey
Is there a way to filter data from one page to another?

For example, choosing a dropdown option on the homepage and be transferred to a dynamic page with the filter active.

See this tutorial.

It’s talking about search but you can use same method.
Just instead use the input field you can use the drop down value.

This the code to get the dropdown value.

$w("#myElement").onChange( (event) => {   let newValue = event.target.value;  // "new value" 
    wixLocation.to("/yourPageURL" + `&q=newValue`);
});

Source: onChange - Velo API Reference - Wix.com