onclick attribute is not working on mobile
Hi,
please I have this code
- <optgroup label="Service Group">
- <option class="dropdown-item" onclick="testFunction()">service 1</option>
- </optgroup>
and when I click on this option from desktop, testFunction runs perfectly, but when I click on it from my mobile browser nothing happens.
- function testFunction() {
jQuery('#test.recommend_link').show();
jQuery('.recommend_link').not('#test').hide();
}
How could I solve this problem??