I'm writing a web document reader with JQM. I don't want my users to continuously scroll right-left when reading, so my viewport is:
<META NAME='viewport' CONTENT='width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=1;' />
Though, I'm aware users preferences with font size may change, due to different visual skills... So, I thought it would be nice to shrink font size on multi-touch shrink action ("pinch-in"), and enlarge font size on multi-touch zoom action ("pinch-out")...
Is it possible? Do I need some external library, beside JQM?