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);
}


Comments

No responses found. Be the first to comment...


  • Do not include your name, "with regards" etc in the comment. Write detailed comment, relevant to the topic.
  • No HTML formatting and links to other web sites are allowed.
  • This is a strictly moderated site. Absolutely no spam allowed.
  • Name:
    Email: