Javascript Confirm popup, I want to show Yes, No button istead of OK and Cancel. I have use vbscript code
<script language="javascript">
function window.confirm(str) {
execScript('n = msgbox("' + str + '","4132")', "vbscript");
return (n == 6);
}
</script>
this only work in IE, In FF and Chrome, it does't work. Does there any workround to acheive this in Javascript.
I also want to chagne the title of popup like in IE 'Windows Internet Explorer' is shown, I want to show here my own application name.