[SOLVED] urgent : refreshing window?
Moderator: General Moderators
urgent : refreshing window?
i have a page with news on it and and edit button on pressing edit button new window pops up and after editing it is closed..but i want is that after closing the window with news should refresh so the i can see the editing i have done...
-
kettle_drum
- DevNet Resident
- Posts: 1150
- Joined: Sun Jul 20, 2003 9:25 pm
- Location: West Yorkshire, England
solved
problem solved
setTimeout( "refresh()", 6*1000 );
function refresh()
{
window.location.reload (true);
}
setTimeout( "refresh()", 6*1000 );
function refresh()
{
window.location.reload (true);
}