How can I get a list to output what the user selects?

I know I know this, I know its been some years, but I am having some difficulty.

My bosses use Wix, they are having me make them a website on wix, I know, I know. however, I’m trying to make a list where the user selects an option and it only shows parts from that make, model, and year.

here’s one of the lists, its just a simple list,

<select name="Makes">
	<option selected disabled>Choose here</option>
	<option value="Acura">Acura</option>
	<option value="Audi">Audi</option>
	<option value="Chevrolet">Chevrolet</option>
	<option value="Chrysler">Chrysler</option>
	<option value="Dodge">Dodge</option>
	<option value="Ford">Ford</option>
	<option value="Honda">Honda</option>
	<option value="Infiniti">Inifiniti</option>
	<option value="Jaguar">Jaguar</option>
	<option value="Land Rover">Land Rover</option>
	<option value="Lincoln">Lincoln</option>
	<option value="Lexus">Lexus</option>
	<option value="Mazda">Mazda</option>
	<option value="Mercedes">Mercedes</option>
	<option value="Mercury">Mercury</option>
	<option value="Mitsubishi">Mitsubishi</option>
	<option value="Nissan">Nissan</option>
	<option value="Pontiac">Pontiac</option>
	<option value="Scion">Scion</option>
	<option value="Subaru">Subaru</option>
	<option value="Suzuki">Suzkui</option>
	<option value="Toyota">Toyota</option>
	<option value="Volvo">Volvo</option>
	<option value="Volkswagen">Volkswagen</option>
</select>

Any help would be greatly appreciated as I can’t seem to find what I’m looking for.

Is this to happen dynamically, without having to submit the form?
Or will the user hit a submit button and the parts list appears on a new page/refresh?
Either way, this needs more than just html/css, but some scripting too. I’m not sure what provision there is in Wix for that, I’m not familiar with Wix.

After playing around with Wix, I think that it would work better with hitting a submit button. My experience with Wix is what I’ve gotten so far with this site and what I’ve researched, so I’m hoping that I can whip up something and it would pull from a page of our parts and list those parts from that make, model and year.

Then it would likely be done with server-side code. Though I have no idea, and have not yet found what back-end language wix uses.

Ahh, okay. Well thank you for your help!

Okay, Wix only allows HTML coding to be added to the webpage it looks like, as for what they’re built on, I found this https://www.quora.com/What-programming-language-is-used-in-the-Wix-platform

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.