I have a web application which has an upload feature.
I want to disable that button when the page is viewed via ipad.
Is that possible.
My thoughts are to check the resolution. But what if the resolution of the device
increases?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use CSS Media Queries
For just iPad related CSS, you can use this:
Add the class
no-ipadfor making the elements not displayed on iPad.For Android (if you need)
Add the class
no-androidfor making the elements not displayed on Android.