to redirect page when i click ok button in alert box
Fotiman
3:36 pm on Jan 11, 2007 (gmt 0)
Is this a question?
mehh
6:26 pm on Jan 11, 2007 (gmt 0)
<script type="text/Javascript"> var url="http://www.somesite.com"; var redirect=confirm("Do you want to be redirected to "+url); if(redirect) { window.location=url; } </script>