On 29 Apr, 18:28, Ricardo <ricardob...@gmail.com> wrote: > Does this have any use case besides printing? If not, what's the point > in making it a jQuery plugin? (just curious).
I wrote a javascript plugin (now with jQuery, maybe indipendent in the future) because in some cases a client generated barcode wolud be useful. No server side language dependencies (all by javascript) and no extra HTTP request for few bytes (network latency + brandwidth usage) I ran into a page with 3000 barcodes to be embedded and the 3000 HTTP requests blocks my server (100% CPU, all 255 threads working) for 240 seconds. Using my plugin I drew them in 20 seconds. A courious aspect: FF3 is 10x slower than Chrome. I'll post in the FF ml for comments :D Bye