faqts : Computers : Programming : Languages : JavaScript : DHTML

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

10 of 11 people (91%) answered Yes
Recently 6 of 7 people (86%) answered Yes

Entry

What's a basic way to make my layers automatically hide after about six seconds?

Dec 4th, 2002 19:06
Ryan Buterbaugh, tracey,


you could use a simple timeout in javascript:
<script language="javascript">
setTimeout("hidelayer('layer')",6000);
</script>
seems like thats all thats necessary