JsBarcode icon indicating copy to clipboard operation
JsBarcode copied to clipboard

ITF-14 TypeError

Open frankykubo opened this issue 1 year ago • 3 comments

Hello,

I want to make ITF-14 barcode. Here is my code:

JsBarCode('#test', '9007901', {
        format: 'ITF-14',
        lineColor: '#0aa',
        width: 4,
        height: 40,
        displayValue: false,
});

Result is javascript error:

Uncaught (in promise) TypeError: api.options(...)[options.format] is not a function
    at JsBarcode2 (JsBarcode.js:76:38)

The 76th line of JsBarCode.js:

api.options(options)[options.format](text, options).render();

frankykubo avatar Jan 26 '23 12:01 frankykubo