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.
- <!DOCTYPE html>
- <html>
- <head>
- <title>Page Title</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css" />
- <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
- <script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
- </head>
- <body>
- <div data-role="page">
- <div data-role="header">
- <h1>Page Title</h1>
- </div><!-- /header -->
- <div role="main" class="ui-content">
-
- <a href="/mobile/dashboard/admin/position.asp?UserPositionID=18918&AdultUserID=12682" class="ui-btn">click to see exception</a>
- </div><!-- /content -->
- <div data-role="footer">
- <h4>Page Footer</h4>
- </div><!-- /footer -->
- </div><!-- /page -->
- </body>
- </html>