How can I get the price attribute's value where #products.option value = 6.
<select id="products">
<option value="2" price="60.00">Product 1</option>
<option value="4" price="40.00">Product 2</option>
<option value="6" price="40.00">Product 2</option>
<option value="8" price="40.00">Product 2</option>
</select>
You can select the element by it's attribute and value.
Demo: http://jsfiddle.net/tusharj/rhf0q9nt/
Docs: https://api.jquery.com/attribute-equals-selector/
EDIT
Thanks to @satpal:
Use
data-*
prefixed custom attributes to store arbitary data on element.HTML
Javascript
Demo: http://jsfiddle.net/tusharj/7c7aet9w/