tags:

views:

17

answers:

1

I am currently working on a website and i need to auto close the page after some interval e.g after 5 minutes the website closes itself automatically.

A: 

setTimeout('self.close();',30000);

Sadat
thanks it worked for 30 seconds onlycan't minutes be used in place of miliseconds
Kumod
no, but you can use minutes converting to milisec. like 1min=60000
Sadat