You probably have <a href="#">TEXT</a> as your link, right?
href="#" will cause the browser to scroll up, so add return false on click to make it look like this:
<a href="#" onclick="return false">TEXT</a> ; alternatively, you can return false from your click function to prevent default behavior.
source share