Hi -
Could you please clarify are you going to use it on devices or this will be a published on a domain web app?
If you're going to use it on a device you can consider this approach:
:: http://devcenter.appery.io/tutorials/...
or use another much a web oriented approach here:
- add this JS code on the page show event:
pre
code
$.mobile.activePage.find("[data-role=content]").css("padding", "0");
$('[data-role="content"]', $.mobile.activePage).html('<iframe src="http://yoursite.info" style="border:0" name="iframeName" width="100%" height="'+($.mobile.activePage.find("[data-role=content]").height())+'"></iframe>');
/code
/pre
Note: that you need to insert your site URL in iframe source attribute.
and you can adjust width and height the way you need this is just an example.