I need to run this code:
<font size='3'><b>
<li class="icon-home">
<a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks -->
<strong>‹</strong>
<a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks -->
</li>
</b></font>
when the site is at index.php.
I have tried this:
<script type="text/javascript">
$(document).ready(function () {
if(window.location.href.indexOf("index.php") > -1) {
document.write('//the above HTML');
}
});
</script>
I can't use php because I am using a html file. The above code just gave me the board links and nothing else. I need the links to show as well as the rest of the page.
Thanks for your help.