how to indicate the cursor as a pointer in the parameter tag? Currently it works well in Firefox and Safari, but it doesn’t work in Chrome. can anyone give any suggestion on this.
<style>
select option{
cursor:hand;
cursor:pointer;
}
</style>
<select>
<option>On mouse over need Hand symbol</option>
<option>11111111111111</option>
<option>22222222222222</option>
<option>33333333333333</option>
</select>
source
share