JQM working in Google Apps Script?

JQM working in Google Apps Script?

I'm using the latest release to do some testing in google apps script web app. But JQM styles seem to not be rendered and I was wondering if anyone here has got this to work with it yet?

Here's my code.

  1. <!DOCTYPE html> 
  2. <html> 
  3. <head> 
  4. <title>My Page</title> 
  5. <meta name="viewport" content="width=device-width, initial-scale=1"> 
  6. <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
  7. <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
  8. <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
  9. </head> 
  10. <body> 

  11. <div data-role="page">

  12. <div data-role="header">
  13. <h1>My Title</h1>
  14. </div><!-- /header -->

  15. <div data-role="content">
  16. <p>Hello world</p>
  17. </div><!-- /content -->

  18. </div><!-- /page -->

  19. </body>
  20. </html>