generate_barcode.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | $(document).ready( function () { $( "#resultBlock" ).hide(); $( "#errorBlock" ).hide(); }); $(document).on( "click" , "#submit" , function () { var apiKey = $( "#apiKey" ).val().trim(); // Get your API key by registering at https://app.pdf.co/documentation/api url += "&type=" + $( "#barcodeType" ).val(); // Set barcode type (symbology) url += "&value=" + $( "#inputValue" ).val(); // Set barcode value $.ajax({ url: url, type: "GET" , headers: { "x-api-key" : apiKey }, }) .done ( function (data, textStatus, jqXHR) { if (data.error == false ) { $( "#resultBlock" ).show(); $( "#image" ).attr( "src" , data.url); } else { $( "#errorBlock" ).show(); $( "#error" ).html(data.message); } }) .fail ( function (jqXHR, textStatus, errorThrown) { $( "#errorBlock" ).show(); $( "#error" ).html( "Request failed. Please check you use the correct API key." ); }); }); |
Click here to get your Free Trial version of the SDK
IMPORTANT:
Cloud API is deprecated and was replaced with more powerful and secure www.PDF.co Web API
CLICK HERE
TO LEARN MORE
ABOUT NEW
www.PDF.co
w/ Web API
On-Premise API Server
Cloud API Server