Function Askconfirm (If (Confirm ("Are You Sure") ) Alert ("You Clicked Yes") Else (Alert ("You Clicked No") Return False ) )

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

function askConfirm()

{
if(confirm("are you sure"))
alert("you clicked Yes")
else
{
alert("you clicked No")
return false;
}
}

You might also like