<select id="curr">
<option value="usd" selected>USD</option>
<option value="eur">EUR</option>
<option value="pnd">pound</option>
</select>
<span class="price" data-usd="$1,500" data-eur="£1.271" data-pnd="€1.000">$1,500</span>
<span class="price" data-usd="$1,500" data-eur="£1.271" data-pnd="€1.000">$1,500</span>
<span class="price" data-usd="$1,500" data-eur="£1.271" data-pnd="€1.000">$1,500</span>
I wants if any one choose Eur then price should change to data-eur value.. or whatever they choose that price should update with that data-
$("select#curr").on("change", ....)?$("select#curr").on("change", ....)