Hi All,
Have 2 textfields to change the password after updating the password want to display below dialog box then should be redirected to logoutfinal page...but without dialog box page is getting redirected.....Appreciate the help in resolving the issue
With alert its working but I want my own dialog box.....
<div class=dlgBox id=dlgBox>
<div class=dlgHeader>
SmartRecruit Alert
<button class=close onClick=document.getElementById('dlgBox').style.display='none'>X</button>";
</div>
<div class=dlgBody><b>
Password has been UPDATED.........
</b></div>
<div class=dlgFooter>
<button onClick=document.getElementById('dlgBox').style.display='none'>OK</button>
</div>
</div>
header('Location: logoutfinal.php');
exit;
Thanks,
Nick
Appreciate help in redirection after custom dialog box butto
Moderator: General Moderators
-
joinnavdev
- Forum Newbie
- Posts: 21
- Joined: Thu Feb 05, 2015 2:34 pm
-
rick.emmet
- Forum Commoner
- Posts: 70
- Joined: Fri Aug 14, 2009 9:43 am
Re: Appreciate help in redirection after custom dialog box b
Hey Nick,
There is a simple JS function you can use:
<script>window.location.replace("logoutfinal.php");</script>
Hope that helps.
Rick
There is a simple JS function you can use:
<script>window.location.replace("logoutfinal.php");</script>
Hope that helps.
Rick