What I'm trying to do is disable the link. How to disable link if dropdown select value was change?
If I select add in dropdown, edit and remove link should be disable. Help?
<select id="">
<option value="add" selected="selected">Add</option>
<option value="edit">Edit</option>
<option value="delete">Delete</option>
</select>
<a class="button add" style="cursor:pointer;"><span><b>Add Purchase Request</b></span></a>
<a class="button edit" style="cursor:pointer;"><span><b>Edit Purchase Request</b></span></a>
<a class="button remove" style="cursor:pointer;" name="remove"><span><b>Remove Purchase Request</b></span></a>