jquery mobile - Issue with compiling HTML5 code in Web-Browser -
i'v created demo page of mobile jquery using textedit...which is,
<!doctype html> <html> <head> <title>my page</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css"> <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script> <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script> </head> <body> <div data-role="page"> <div data-role="header"> <h1>my title</h1> </div><!-- /header --> <div data-role="content"> <p>hello world</p> </div><!-- /content --> <div data-role="footer"> <h4>my footer</h4> </div><!-- /footer --> </div><!-- /page --> </body> </html>
but, in browser code not getting compiled , shows these texts as plain text.. , i'v confirmed browser support html5 here: http://html5test.com/
what missing!?
question browser using? tried code chrome , worked perfectly.
my guess behind corporate or university firewall blockign cdn urls. why don't download jquery mobile files , place js, css files locally , try run page again?
Comments
Post a Comment