Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery Mobile with jQuery plugins

I just started using jQuery Mobile. Can we use plugins developed for jQuery with jQuery Mobile?

like image 759
user927355 Avatar asked Mar 29 '26 02:03

user927355


2 Answers

Yes you can, but only some limited plugins

like you can use :

  1. DOM implementation plugins
  2. Input Validations plugins
  3. Ajax plugin
  4. Animation Plugin

Because Jquery mobile is developed specially for the small screen device and with limited features.so can not use some jquery plugins.

like image 59
Tushar Ahirrao Avatar answered Apr 01 '26 09:04

Tushar Ahirrao


It is built on jQuery core, so you should be able to use jQuery core plugins with jQuery mobile. You could lose some of the advantages, because jQuery mobile is specifically designed to work with different mobile phones and jQuery core plugins could be incompatible or less functional with some mobile devices.

In other words: your mileage may vary, just try it!

like image 25
Daan Avatar answered Apr 01 '26 08:04

Daan