I am trying to create a website mobile. What framework would you suggest I use? . there are so many web mobile framework can used, Are there any better ones?
Learn what each bit is for first, essentially all you need is CSS that's optimized for smaller screens, and a mobile-device friendly javascript framework (if you need that functionality). Pick any that you find you can understand simply, that is the only factor which determines how good they are, since they all do pretty much the same stuff, which isn't much at all tbh. Just a few media selector queries and basic grid layouts.
Yes, there is a big list of framework for mobile application on internet. Some of them are really effective such as jQuery Mobile, WebApp.Net, DHTMLX Touch and Joapp. These all are very good framework for mobile website.
Rather than re-inventing the wheel, you could use Wordpress anf the WPTouch plugin. This would give you the easiest and quickest development route, mate.
I use my own framework.. made it for myself. If you are a little pro in HTML/CSS and for whatever CMS you are trying to use, try to make your own framework, it would help you and you can develop websites more quickly.
If you have a really simple site, can you create the mobile version with just adding another stylesheet to it? Do you always need javascript to make the site mobile?
yes, i always use different stylesheet for mobile version and use media queries to assign different stylesheet depending on browser. and for javascript, i use it if i need it like change size /interface of menu bar.
There are many frames like DHTMLX ,TouchWebApp.Net, jquey mobile,and Joapp but i prefer you to use JQuery mobile because its very interesting and easy to use..
Thanks rainat. I'm considering that method. It's hard to decide with everyone saying they like this or that. Jquery Mobile and WP Touch seems to be a favorite I read a lot.
NONE -- most 'frameworks' defeat the entire point of HTML/CSS, and result in fat bloated presentational code so bad you might as well go back to writing HTML 3.2. They generally rely on presentational uses of classes, which in turn means you get no separation of presentation from content -- the cornerstone of modern accessible markup! (Same can be said of that OOCSS asshattery) Semantic markup, bend it to your will with CSS with a fluid or semi-fluid layout, use media queries to make it responsive. Less code, less there is to break. You vary from this, you generally end up with a stiff fragile layout filled with pointless bloated code that make it take longer to load, and makes it harder to use or maintain. HTML/CSS frameworks are even MORE idiotic than Javascript ones. Anyone telling you otherwise doesn't know enough on the subject to be flapping their gums about it!