Cannot use "jquery" in directory name/url?

Cannot use "jquery" in directory name/url?

I am starting with a simple empty template (see below). 

Took me 2 hours discover a strange issue through various trial-and-error tests. Note the script tag src attribute is using "/libs/ jquer/...". This is a deliberate misspelling missing the "y".

The moment I switch the directory name (and thus URL path) to "/libs/ jquery/..." and update the src attribute accordingly, the whole jQuery Mobile page formatting will fail.

Is there a strange path or filename parsing issue? Did I break certain assumption or path/filename convention required in jQuery Mobile?

  1. <!DOCTYPE html> 
  2. <html>
  3. <head>
  4. <title>Application Name - jQM Template</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="stylesheet" href="/libs/jquer/mobile/themes/default/jquery.mobile.min.css" />
  8. <script lang="text/javascript" src="/libs/jquer/jquery.min.js"></script>
  9. <script lang="text/javascript" src="/libs/jquer/jquery.mobile-1.4.5.min.js"></script>
  10. </head>

  11. <body>
  12. <div data-role="page">
  13. <div data-role="header">
  14. <h1>Page 1</h1>
  15. </div>
  16. <div role="main" class="ui-content">...</div>
  17. <div data-role="footer">
  18. <h4>Page Footer 1</h4>
  19. </div>
  20. </div>
  21. </body>
  22. </html>