Well, at the moment, you have a problem with the English page, I think you must be working on it, but in any case the links are like:
Code:
http://www.alive-and-well.org/ajaxpage('pages/ministry.htm',%20'content')
Or, as written in the source:
Code:
<li><a href="ajaxpage('pages/ministry.htm', 'content')">Ministry</a></li>
It used to be (which would work):
Code:
<li><a href="javascript:ajaxpage('pages/ministry.htm', 'content')">Ministry</a></li>
But it really should be:
Code:
<li><a href="pages/ministry.htm" onclick="ajaxpage(this.href, 'content');return false;">Ministry</a></li>
I'm not sure what you mean about the anchors, are you saying that you want the loaded content to scroll to a particular spot once it loads, or that you want the entire ('top') page to scroll to a particular spot?
Bookmarks