Im trying to get the popup to redirect to a page when cancel is pressed and carry on is ok is pressed.
ive tried loads of things inbetween the if anf else but i cant get it to work
help please
Code:
<script type="text/javascript">
function disp_confirm()
{
var r=confirm("Are you sure you want to delete your account");
if (r==true)
{
}
else
{
}
}
</script>
help please
