I have a webiew app on android which loads some websites but not the one I need it to.
I have no idea if this is a problem with the website host or something I can d
Finally found the answer after a lot of searching. For anybody in a similar situation, as well as enabling javascript you also need to enable Dom storage by adding in;
webView.getSettings().setDomStorageEnabled(true);
Change webView to whatever yours is called and you should be good to go.
Hope this helps someone.