Advanced settings
What about normal links to the internal content pages?Will the link <a href="advanced.html">Advanced settings</a> work as expected outside of the ajax f-source menu?
Yes! Click the link Advanced settings.
To make this possible you need to add this code to the page head.
<script type="text/javascript">
location.replace("index.html#"+document.title.replace(/ /g,"_"));
</script>
* In the above example, "index.html" - link to the main page containing ajax f-source menu.The page must have the same title as corresponding title in the f-source menu
Source code:
<html>
<head>
<title>Advanced settings</title>
<script type="text/javascript">
location.replace("index.html#"+document.title.replace(/ /g,"_"));
</script>
</head>
<body>
<div id="content">
--> Dynamic Ajax content goes here <--
</div>
</body>
</html>