Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript show/hide Reply To: show/hide

#240729
Shikkediel
Participant

Looks like some basic jQuery… and not very well coded for that matter. One example of that :

$('#MOBILE_FEED').animate({'opacity':0.0},100, function() { $('#MOBILE_FEED').css('display', 'none') } );

Would be the same as :

$('#MOBILE_FEED').fadeOut(100);

Vice versa it’s a simple .fadeIn(), triggered by an event listener on the icon…