android,webview,android-browser,external-links,internal-link
Change if (url.contains("http")) { // Could be cleverer and use a regex return super.shouldOverrideUrlLoading(view, url); // Leave webview and use browser } else { view.loadUrl(url); // Stay within this webview and load url return true; } to if (url.contains("http")) { // Could be cleverer and use a regex Intent intent...
jquery,accordion,external-links
In the fiddle you use ID's (for example accordion-3) to identify, display and hide the accordion sections. That ID you can also use as an anchor for any link to your faq-pages. Put the following code at the end of the document.ready function: // current location has anchor if(location.hash) {...