user927355
user927355

Reputation: 31

jQuery Mobile with jQuery plugins

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

Upvotes: 2

Views: 1098

Answers (4)

Shawinder Sekhon
Shawinder Sekhon

Reputation: 1599

You might be interested in this: http://www.jqmgallery.com/jquery-mobile-plugins/. You will also find many site templates, books, tutorials and other resources about jQuery mobile.

Upvotes: 1

Ala' Alnajjar
Ala' Alnajjar

Reputation: 798

Most plug-ins should work without issues,I've tried many jquery plug-ins with jquery mobile and so far I've never faced any issues at all,but you have to test any plug-in you want to use on mobile and see how things are working/rendering on mobile (specially if the plugin use css and images)

Upvotes: 0

Tushar Ahirrao
Tushar Ahirrao

Reputation: 13115

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.

Upvotes: 7

Daan
Daan

Reputation: 10304

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!

Upvotes: 1

Related Questions