I've got the following script in my code behind that happens after a user clicks a button:
ScriptManager.RegisterStartupScript(Page, Page.GetType(), "scrollToAnchor",
"document.getElementById(\"addToCartAnchor\").scrollIntoView(false);", true);
The intention is to scroll the page to a certain location to display some messaging.
The code above appears to work, but seems very amateurish to me. Are there any obvious improvements i could make here?
Edit: This button press causes a postback to the server and scrolling should happen when the page gets back to the client.