So i’ve embeded a HTML jQuery element within an Android application, for some bizzare reason on Android 4.x i always get a page not found.
it’s a very simple structure:
file.html#hash
Any fixes?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It seems that android 4.x does not like hashed url’s
Did not work but
file.htmlworks fine, after some research the android 4.x application was trying to find the a file namedfile.html#hashbut no such file existed in our directory.To fix this problem I had to re-write the javascript to allow a direct link to the page of
file.htmland then hash on the next event.I hope this helps anyone with a similar problem.