Possible Duplicate:
Adding additional data to select options using jQuery
Is there a way to asign multiple values into a single HTML element other than using the "value" atrribute and play with tokens to split the content?
I would like to do something like this:
<select id="car_model">
<option value="1" value2="seddan" value3="Volvo">Volvo S60</option>
<option value="2" value2="compact" value3="Saab">Saab s93</option>
<option value="3" value2="convertible" value3="Mercedes">Mercedes SLK</option>
<option value="4" value2="compact" value3="Audi">Audi 3</option>
</select>
How do you retrieve all the values of the selected option using jQuery?