Hi Guys, I'm trying to load different images into a DIV according on the selected, something like this:
<select>
<option value="mercedes">Car #1</option>
<option value="ferrari">Car #2</option>
<option value="fiat">Car #3</option>
</select>
If the Car #1 es option is selected, load mercedes.jpg into <div id="car"></div>
Any ideas??
Thanks so much!!