browser scroll not going at bottom of toggle?
Posted
by metal-gear-solid
on Stack Overflow
See other posts from Stack Overflow
or by metal-gear-solid
Published on 2010-05-06T05:50:47Z
Indexed on
2010/05/06
5:58 UTC
Read the original article
Hit count: 135
I 'm using this code to make a toogle effect at bottom of the page. it's working but toogle div going under the fold but browser do not to scroll at bottom following the toogle area
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function() {
// toggles the slickbox on clicking the noted link
jQuery('a#sm_toggle').click(function() {
jQuery('#sitemapContainer').slideToggle(400);
return false;
});
});
</script>
© Stack Overflow or respective owner