Unexpected identifier when clicking on links with querystrings

Unexpected identifier when clicking on links with querystrings

I have had a JQM mobile web app working for over a year under the 1.3.x source with no issues.

I just upgraded to 1.4.2 and 1.10.0 a week ago and some of my links now produce an exception while others do not.

Has anyone else experienced any js exceptions when clicking on links?  I even tried JQ 1.11.0 and I get the same behavior with JQM 1.4.2.

Here is an example that cause an exception.  

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Page Title</title>

  5. <meta name="viewport" content="width=device-width, initial-scale=1">

  6. <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css" />
  7. <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
  8. <script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
  9. </head>
  10. <body>

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

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

  15. <div role="main" class="ui-content">
  16. <a href="/mobile/dashboard/admin/position.asp?UserPositionID=18918&AdultUserID=12682" class="ui-btn">click to see exception</a>



  17. </div><!-- /content -->

  18. <div data-role="footer">
  19. <h4>Page Footer</h4>
  20. </div><!-- /footer -->
  21. </div><!-- /page -->

  22. </body>
  23. </html>