[jQuery] Re: RAW PRINTING - How can I print DIRECTLY to DOT Matrix Printer from jquery?

2008-10-22 Thread Jon Ursenbach
You don't need jQuery to do this. On Oct 22, 6:00 am, Vedia [EMAIL PROTECTED] wrote: Hi! I want to sent text with javascript directly to Dot Matrix printer like Panasonic KXP-1050 without using true type fonts. As I know, this means: RAW Printing I want to use this for printing bills or

[jQuery] Re: RAW PRINTING - How can I print DIRECTLY to DOT Matrix Printer from jquery?

2008-10-22 Thread alexb
Umm, I suggest you read this article: http://javascript.about.com/od/events/a/print.htm Basically you can simply use a button with the onclick attribute to tell the browser to bring up the print dialog box, i.e.: input type=button value= Print this page onclick=window.print();return false; /

[jQuery] Re: RAW PRINTING - How can I print DIRECTLY to DOT Matrix Printer from jquery?

2008-10-22 Thread alexb
Umm, I suggest you read this article: http://javascript.about.com/od/events/a/print.htm Basically you can simply use a button with the onclick attribute to tell the browser to bring up the print dialog box, i.e.: input type=button value= Print this page onclick=window.print();return false; /