I'd try:
Code:
usersLister.location.href='pageName.htm#'+document.userListFrm.lastEdited.value;
where:
pageName.htm
is the actual name of the page and document.userListFrm.lastEdited.value is the anchor name. If the page is already loaded in the frame/iframe, then this might work:
Code:
usersLister.location.href='#'+document.userListFrm.lastEdited.value;
The important thing to remember (as I'm not clear on what your variable document.userListFrm.lastEdited.value contains) is that in passing a variable to location.href=, it should not be quoted, if you put quotes around it, it becomes a literal string and no longer represents the value that it held.
Bookmarks