I have created a collapsible section in fiddler using jquery mobile, which work perfectly fine and all the section does collapse https://jsfiddle.net/ashishrawat/cduhkLm0/
However when i take the same page and display it in webview, it doesn't work. I have inspected it in chrome and I get the same element(html) as jsfiddle, excluding the header, also there is no error in console.
My page rendering code in android is pretty standard
webView.addJavascriptInterface(
inspectView.new SurveyJSInterface(), "HTMLOUT");
//webView.loadUrl(mSurveyUrl);
//webView.loadDataWithBaseURL("file:///android_asset/", fileContent, "text/html", "UTF-8", null);
webView.loadDataWithBaseURL("file:///android_asset/index.html", fileContent, "text/html", "UTF-8", null);
webView.setInitialScale(1);
webView.getSettings().setSaveFormData(true);
webView.getSettings().setLoadWithOverviewMode(true);
webView.getSettings().setUseWideViewPort(true);
HEader section $(document).bind('mobileinit',function(){ $.mobile.pushStateEnabled = false; });
Only difference which i could see is fiddler is using jquery 1.4.4 while i am locally using 1.4.5 However i don't think that matters. Please suggest !