How do I apply jquery for mobile only?
- By Preneesh AV --
- 13-Dec-2019 --
- 186 Comments
How do I apply jquery for mobile only?
To write jQuery that only applies for mobile devices, just use the sample below and it worked for me.
if(window.outerWidth <425){ alert('your jquery code here - it fires for mobile device only');}