Click here to Skip to main content
15,886,137 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Hi,

I am having below line of code. It is working fine in desktop view.
But it is not working in mobile view.

$('#disclaimer-tab').mouseenter(function () {
		$('#disclaimer').clearQueue().animate({
			height: 80
		}, 500, function () {
		// Animation complete.
		});
	});


please suggest.

Thanks,
Posted
Comments
Sebastiaan Meijerink 14-May-15 13:49pm    
There is no mouse on a mobile device. So there is also no mouseenter. You'll need to find some othere gesture like "tab"
Rashmi Sutar 18-May-15 9:25am    
hi,

ok..
I also tried using touchstart and touchend events but they also not working..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900