davidwilliamson82
davidwilliamson82

Reputation: 21

Chrome omnibox querystring breaks, replaces my '?' with '%3F'

I have a local html file, with embedded javascript, that I use query parameters with to modify the functionality. previously, it worked fine, and in fact, i have bookmarked pages which work fine when i click on the bookmark.

The problem occurs when I try to enter in a url with the query string in the chrome omnibox. it replaces my '?' '%3F' and the whole thing breaks because it can't even read the file, as it thinks the file extension is now '.html%3FfirstParam=firstValue&secondParam... etc.'

I'm not really sure how to approach this problem. my app can be found here, if you need clarification, but i think it has more to do with Chrome. https://youtu.be/1BHMyZkDkxA

Thank you in advance.

Upvotes: 0

Views: 164

Answers (1)

davidwilliamson82
davidwilliamson82

Reputation: 21

I was able to get it to work if I manually added the "file://" to the beginning, and made sure that the ".html" was followed by a "?"

Upvotes: 2

Related Questions