How to move page to a html link without post...

admin

Administrator
Staff member
I know this is probably an easy task for you seasoned programers but I can't figure it out. I would like to move my page up to a named html tag without posting the page. In this situation, if the page posts the picture goes back to the original. I would really like to move the page without any kind of post.

My code is:

function change( strControl , strPic )
{
document.images(strControl).src = strPic;
jumpTo("strControl");
}

When I click a thumbnail image it fires two functions. The first is change() and the second is "return false;" which stops the page from posting back to the server. When I click the image I want the page to automatically scroll up to the name of the html tag that is contained in strControl.
 
Back
Top