I have been having difficult getting pinch zoom to work in the webapp I am creating with Phonegap. Currently, I am loading information into a p tag view a remote script, but the
binding the component to be pinched with gesture event can be done.
e.g.
var con=document.getElementById('containerId');
con.addEventListener('gesturechange',function(e){
if(e.scale>1)
{
//zoom in
}
else if(e.scale<1)
{
//zoom out
}
});