Reputation: 3813
I'm making a fairly simple mobile version for our website. It's not going to have every website option and the buttons I will be designing myself. For their functionality though, being pop up and sliding and stuff I was considering using jquery, then I noticed jquery Mobile. I don't think I'm going to need all the theming options that jquery mobile has.
Would it be better then to use jquery or jquery mobile for my mobile project?
Upvotes: 2
Views: 480
Reputation: 4291
How about Bootstrap
? http://twitter.github.com/bootstrap/
Bootstrap v2 introduced a set of new features for creating mobile web applications. It does only have UI elements but it is really easy to work with Bootstrap and it makes web application development very quick! Worth a try.
Upvotes: 2
Reputation: 5347
Both! JQueryMobile for UI and JQuery for development stuff.... you just need to take care on footprint...
Upvotes: 0
Reputation: 122052
jQuery Mobile actually includes all of jQuery. It is not smaller but rather adds in
If you do not need any of those things then there is no point including jQuery Mobile. If you want only hash-navigation then you can more easily just get a jQuery plugin targeted at that only. I would not use jQuery Mobile unless you use its theming/widgets and navigation system as it can be a bit of a pain if you stray off the tracks.
Upvotes: 2
Reputation: 43077
jQuery Mobile is built on top of jQuery. It is designed to tackle most compatibility issues among mobile devices, so it's well worth considering.
A unified, HTML5-based user interface system for all popular mobile device platforms, built on the rock-solid jQuery and jQuery UI foundation. Its lightweight code is built with progressive enhancement, and has a flexible, easily themeable design.
Upvotes: 0