- $(document).ready (function () {
- $('#side_menu').fadeIn('fast', function() {
- $('#side_menu').css('display','block');
- $('#side_menu').animate({'right':'0%'},300);
- });
- });
When I comment out the fadeIn, all other calls to the side_menu id work fine - even on the server. What am I missing here?