goto anchor after .load

goto anchor after .load

With the following code I can load/overwrite html code to a specific section in the 'base' html document:

  1. <div id="changedSection"></div>
and
  1. $("#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