I need to add option value + a tag along with that and I need to take an action when clicking on that a tag like following.
I tried with something like following
<select>
<option value="1">Free <a> select<a></option>
<option value="1">Pro <a> buy<a></option>
<option value="1">Unlimited <a> buy<a></option>
</select>
but option value should not contains html tags so it gets removed when goes to DOM. Any idea how to make this happen?