Hi there. When i want to use a confirm button using a form i do as follows
-----------------------------------------------------------
function checkform2()
{
// Uses a confirm box
var yes = self.confirm("Are you sure?"
;
return yes;
}
<FORM name="" method="post" action="" onSubmit="return checkform()">
---------------------------------------------------------
If i wanted to do the same thing via a <a href> how would i go about doing it?
Thanks in Advance
-----------------------------------------------------------
function checkform2()
{
// Uses a confirm box
var yes = self.confirm("Are you sure?"
return yes;
}
<FORM name="" method="post" action="" onSubmit="return checkform()">
---------------------------------------------------------
If i wanted to do the same thing via a <a href> how would i go about doing it?
Thanks in Advance