hi
I use fade in and fade out and now I want to use Fade in for modal('show') and FadeOut for .modal('hide').
<script type="text/javascript">
$(document).ready(function () {
//Check to see if the window is top if not then display button
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
$('.scrollToTop').fadeIn();
} else {
$('.scrollToTop').fadeOut();
}
});
//Click event to scroll to top
$('.scrollToTop').click(function () {
$('html, body').animate({ scrollTop: 0 }, 800);
return false;
});
});
</script>
how I can use it?
Best regards
Neda