I am trying to migrate my existing html5 app into a metro app, and finding two major hurdles:
- .innerHtml is not supported due to security reason
- $.Ajax just doesn't work (I am using jsonp for data exchange from server)
Questions:
- How do I bypass the security issue for .innerHtml?
- What other alternative do I have to make $.Ajax work?