Confirm & alert Boxes
Confirm & Alert
Using javascript it is possible to show a Confirm box through which a user can select or cancel the process.So here we are goin to show a confirmation message and after clicking that it'll check a checkbox and the result will be displayed in an alert box.
function Confirmation(chkSelectId)
{
var chkSelect=document.getElementId(chkSelectId);
var flag=window.confirm('Are You Sure You Want To Delete?');
chkSelect.checked=flag;
alert(flag);
}
