I am using jquery fadeIn like this
imgTag = '<img src="../../../images/leadGenAdPreview.jpg" alt=""/>';
$('#previewImg').hide();
$('#previewImg').html(imgTag).fadeIn(1000);
What this does is, it scrolls up the page all the way up. The section which I want to fadeIn is quite a bit down on page. And I would best prefer page not to scroll at all. How can this be achieved ?
This is the entire snippet
$('#previewImg').hide();
$('#previewImg').html(imgTag).fadeTo(1000,100);
var currentlySelected = $('.inFoo-tabs-select');
$(currentlySelected).removeClass('inFoo-tabs-select'); $(obj).attr('class',$(obj).attr('class')+' inFoo-tabs-select');
goToScroll('infooterDemo');
Because my target element is some way down the page, i was using scroll function. once i click on target element, fadeIn, and scroll down to it, next time I click on it, I dont want it to scroll back up.
$('#previewImg').hide(); $('#previewImg').html(imgTag).fadeTo(1000,100); var currentlySelected = $('.inFoo-tabs-select'); $(currentlySelected).removeClass('inFoo-tabs-select'); $(obj).attr('class',$(obj).attr('class')+' inFoo-tabs-select'); goToScroll('infooterDemo');Because my target element is some way down the page, i was using scroll function. once i click on target element, fadeIn, and scroll down to it, next time I click on it, I dont want it to scroll back up. – Shades88 Sep 22 '11 at 6:52