With the following code I can load/overwrite html code to a specific section in the 'base' html document:
- <div id="changedSection"></div>
and
- $("#changedSection").load("someURLaddress");
Now how to get directly displaying a 'requested' section in the
loaded part of the document? Adding an anchor like
"someURLaddress#myAnchor" isn't successful here.
Any thoughts?
Guenter