Prevent zoom on Blackberry Storm
For web pages that are being viewed in the iPhone, you can add the following meta tag to disable to zoom feature:
<meta name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
Is there something to do the same for the Blackberry 开发者_JS百科Storm?
BlackBerry® Device Software 4.6 and later supports the meta tag you specified.
<meta name="viewport" content="width=320; initial-scale=1.0;
maximum-scale=1.0; user-scalable=0;"/>
It also supports the HandheldFriendly tag:
<meta name="HandheldFriendly" content="true" />
I tested both tags on my 9700 and both independently disabled the zoom cursor.
How To Article From Blackberry.com
精彩评论