Reputation: 11192
Both Bootstrap (v2) and jQuery Mobile (v1.1 RC1) provides building blocks that I want to use for my application.
Bootstrap is clean, simple and wonderful. However, it lacks jQuery Mobile's extremly simple & customizable "List View" which I need to create mobile web applications.
From my simple test, they get in each other's way (messing up some layouts, paddings, sizes, etc).
So, my questions:
Upvotes: 26
Views: 20510
Reputation: 7197
What about jquery-mobile-bootstrap-theme? (from author)
Is a theme for jquery-mobile, it has no bootstrap.
Also, if you want bootstrap, just add bootstrap's css to your webpage, the styles should not collide with jquery mobile, unless you use bootstrap's ids in divs.
You could also override bootstrap's css for small displays to use jquery-mobile. See this.
// Landscape phones and down
@media (max-width: 480px) { ... }
I think you are looking for bootstrap's 3 list group linked
Upvotes: 7