slideUp only hides? can't show using slideUp
#bannerFijo is a fixed banner display:none at bottom:0px; so to show it I should slideUp() but it seems that this is not working. <script type="text/javascript"> function mostrar_banner() { $('#bannerFijo').slideUp(); } function ocultar_banner(){ $('#bannerFijo').slideDown(); } $(document).ready(function() { mostrar_banner(); $('#bannerFijo .close').click(function() { ocultar_banner(); }); }); </script> (and it does using show/hide) <script type="text/javascript"> function mostrar_banner() { $('#bannerFijo').show(); } function ocultar_banner(){ $('#bannerFijo').hide(); } $(document).ready