Ok, what im trying to do is slide a div down when the user clicks a list item.
Problem is I am using Selectric https://github.com/lcdsantos/jQuery-Selectric which converts a Select box to an unordered list. So when the user clicks a which the source outputs as a list item I want a div to slide down.
On mobile safari (iOS7) the selectbox UI is the same as the standard selectbox UI.
What is the best practice when it comes to onClick for mobile devices?
Basic jquery:
$(window).load(function() {
$('.List li').click(function() {
$('.Div').slideDown('500');
});
});
You can see a working example HERE (Advanced search on the side bar)
Thanks.