Hi,
The below code is working in chrome and firefox but it its not working in IE 11 browser. we are trying to print the plain text on the labels using the zebra printer ZT220 on client side printer.
Please help me on this issue resolved.
Pr...
Print ZPLfrom browser
Test page forprint ZPL from browser!
functionprintZpl(zpl) {
var printWindow =window.open();printWindow.document.open('text/plain') printWindow.document.write(zpl); printWindow.document.close(); printWindow.focus();
printWindow.print(); printWindow.close();
}
^XA
^FXTest ZPL^FS
^FO50,100
^A0N,89^FDHello ZPL^FS
^XZ
1 Replies
Hi, I'm thinking this is the CORS issue:
Robin