function prompter() {
var NoS = prompt("Enter How many Stamp Papers Do you want?", "1");
for (i = 0; i < NoS; i++) {
if (i != 0) {
document.getElementById('sno').value = parseInt(document.getElementById('sno').value) + 1;
}
//window.print();
//var printwindow=window.open('','','left=0,top=0,width=1000,height=780,toolbar=0,scrollbars=0,status=0');
window.print();
//var printdata=document.getElementById('printarea').innerHTML;
//printwindow.document.write();
//printwindow.document.close();
//window.focus();
//window.close();
}
window.history.go(-1);
}
It is working with ECLIPSE IDE browser, but it is not working with external browsers, it is printing only once.