Jörn Zaefferer wrote:
> Claudio Poli wrote:
>> is there a jquery way to have this #flash slideup after a certain amount 
>> of time?
>>   
> Looks like what you need is a pause. Maybe there is a plugin already for 
> this? Go to jquery.com and click von Plugins down below in the 
> navigation. Mhmm, the list is quite long, but a text search for "pause" 
> gives a good result: http://www.mythin.net/projects/jquery.php
> Hope that helps :-)

<script type="text/javascript">
$(document).ready(function() {
        $('#flash').slideDown("slow",function(){
                this.timer=setTimeout('$("#flash").slideUp("slow")',1000);
        });
});
</script>

I've written this, but I'm pretty sure that there's a best way to do it.
thanks for the hints.

kain

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to