how to print to console javascript
console.log("string")
how to print a line in javascript
console.log("Your line would be here")//Prints a line on the console
alert("Your message here")//Raises an alert
how to code print in javascript
console.log("print")
//or
alert("Print")
how to print in javascript
//It is very esay to print!
//This how to print in Javascript!
console.log("string");
var num = 1;
console.log(num);
Printer Print using HTML
function PrintElem() {
var mywindow = window.open('', 'PRINT');
mywindow.document.write('<html><head><title>Payment Slip</title>');
mywindow.document.write('</head><body style="text-align:center;font: Georgia, "Times New Roman", Times, serif;background: #fff;font-size: 22pt;margin:20px auto auto 50px;" >');
mywindow.document.write('<header style="text-align:center; white-space:nowrap;overflow:hidden;line-height: 1em;">' +
'<p style="font-size:16pt;white-space:nowrap;overflow:hidden;line-height: 12pt;">Payment Slip</p>' +
'<p style="font-size:16pt;white-space:nowrap;overflow:hidden;line-height: 1em;">' + $('.mylabelpaymentheader').html() + '</p>' +
'</header>');
mywindow.document.write('<content style="text-align:center;">' +
'<table style="margin-left: auto;margin-right: auto;border-collapse: collapse;font-size:16pt;">' +
'<tr style="border:1px solid black"><td style="border:1px solid black">Name:</td><td style="border:1px solid black">' + $('.lblName').html() + '</td></tr>' +
'<tr style="border:1px solid black"><td style="border:1px solid black">Address:</td><td style="border:1px solid black">' + $('.lblAddress').html() + '</td></tr>' +
'<tr style="border:1px solid black"><td style="border:1px solid black">Meter No:</td><td style="border:1px solid black">' + $('.lblMeterNo').html() + '</td></tr>' +
'<tr style="border:1px solid black"><td style="border:1px solid black">Token:</td><td style="border:1px solid black">' + $('.lblToken').html() + '</td></tr>' +
'</table>'+
'</content>' +
'<footer>' +
'<hr style="margin-top:30pt;margin-bottom:30pt;">' +
'<p style="text-align:right;">© pdb</p>' +
'</footer>'+
'');
mywindow.document.write('</body></html>');
mywindow.document.close(); // necessary for IE >= 10
mywindow.focus(); // necessary for IE >= 10*/
mywindow.print();
mywindow.close();
return true;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us