If you have the div show up on a click, you want to do this, if you are using jQuery:
$('#id-for-the-link').click(function() {
// do div showing here
return false;
});
The 'false' will not process the link that goes to '#' which is what yoinks you back to the top of the page.
__________________
What's blue and not heavy?
|