Titanium webview
From John Freier
Setting the height
IOS
For IOS setting the height of a WebView can be tough. A good trick is to get the height of the HTML document and setting the WebView height.
var actualHeight = e.source.evalJS("document.body.offsetHeight"); e.source.height = actualHeight;