Created
November 8, 2011 19:09
-
-
Save siromega/1348779 to your computer and use it in GitHub Desktop.
Revisions
-
siromega created this gist
Nov 8, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ <!DOCTYPE html> <html class="no-js"> <head> <!-- stuff --> <!-- FOUC fix --> <style type="text/css"> .no-js {display: none;} </style> </head> <body> <!-- all my html --> <!-- load all my javascripts down here --> <script src="../jsc/jquery-1.6.1.js?v=1"></script> <script src="js/jquery.mobile-1.0rc2.js?v=1"></script> <script src="js/jquery-ui-1.8.13.autocomplete.min.js"></script> <script src="../jsc/json2.js"></script> <script src="js/app.js?v=1"></script> <script src="../jsc/jquery.microtemplate.js"></script> <script> // borrowed from Mr. Paul Irish http://paulirish.com/2009/avoiding-the-fouc-v3/ (thanks!) (function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement) </script> <script type="text/javascript" > $(document).ready(function() { loadeddocument(); }); </script> </body> </html>