If you want to close your pop up image after 10 sec. just follow me:
Add a javascript function to the popup page
function Close()
{
window.close();
}
And to the body tag onload event add this
onload = "setTimeout('Close();', 10000)"
it will close the popup after 10 secs.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Highly Appreciated your comments