onClick event not working on tablet,ipad? it is perfectly working on Pc browser but not working for touch events , i tried .binding(),.on() and many thing but they are not
You must have to bind the 'click' or 'tap' event for associated HTML control. You can bind like this
$('elementid').bind('click',function() { alert('Click event triggered'); });
OR
$('elementid').bind('tap',function() { alert('Tap event triggered'); });