I have a client that needs a mobile version of their site. I have never done a mobile-specific site.

I am looking for a platform to develop cross browser mobile websites.

I looked around, and because I love jQuery, I have a bias towards jQuery Mobile. Has anyone used this library or does anyone know of a better one (hopefully not :-) ).

I hoping to find a library that helps create stable css and js (jQuery Mobile does vie themeroller!).

link|improve this question

feedback

9 Answers

up vote 3 down vote accepted

If you're looking to make web apps, give jQuery Mobile or jQTouch a shot. jQuery Mobile is still pre-production, so it's a little flaky, but it will only get better as time goes on.

However, if it's only web sites you're interested in, it might be more worthwhile to check out a CSS framework like Less Framework, which helps you pare down a site for mobile visitors without forcing you to use an iPhone list-style view like the JavaScript-heavy solutions.

(I like a mobile-friendly site with an appropriately sized viewport and content rather than a faked list view, but that's just personal preference.)

link|improve this answer
feedback

Most of the frameworks targets webkit (iphone/android/webos). If you want your mobile site accessible by as many as possible phones you will have to forget about frameworks and write as simple as possible javascript.

link|improve this answer
feedback

Sencha Touch is also worth looking at. I understand jQTouch isn't currently under development and the developer is now at Sencha Touch.

link|improve this answer
2  
jQTouch has been taken over by Jonathan Stark and is being actively maintained – Michael Mullany Feb 8 '11 at 16:31
feedback

You could try jQtouch but I'm afraid it's only compatible with webkit mobile browsers.

link|improve this answer
feedback

Another option is Zepto.js mobile javascript framework for mobile Webkit browsers.

link|improve this answer
feedback

I would also consider Skeleton at http://www.getskeleton.com/. Their tagline is "A Beautiful Boilerplate for Responsive, Mobile-Friendly Development".

link|improve this answer
feedback

I am using jquery mobile on a large project at work and it has proven to be very stable and quick to code. It's lightweight and easy to add to an existing site. Message me if you need any help on the project.

link|improve this answer
feedback

jqueryMobile is just awesome. We are using it and it works flawlessly. You may find the working examples here. http://www.jqmgallery.com/ These will provide you the starting point and much more for your mobile site.

link|improve this answer
feedback

Building one's first mobile site is similar to building your first web site. Easy to get started (with enough googling/practice), harder to master. But, you're on the right path. Some suggestions:

  • jQuery Mobile is great, because you can get started using your existing HTML/CSS/JS skills. However, note that it will not work (or work well) on non-webkit mobile devices. ie iEMobile, BlackBerry, Palm, etc. Granted, it WILL work well on 70%+ of your mobile userbase. So, decide if you care about that.

  • For broader support, Skeleton or Mobile Boiler Plate are good, but not as "slick/fancy."

  • You probably need an ability to detect whether the user is on a mobile device or not. There are a bunch of options out there, google a bit & you'll find them.

  • You also need more than just a platform -- you should make sure to brush up on image sizing (not all mobile devices are 320px wide!), mobile UX design (your mobile site should probably include/feature different things and workflows than the desktop site), and mobile-specific features (GPS, etc).

  • Start simple. :)

HTH

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.