JSFiddle - React, Tailwind, and code Playground
by Torwan
JavaScript
$(document).ready(function () {
var list = ['dog', 'cat', 'mouse', 'hippo', 'ox'];
var qrUrl = 'https://chart.googleapis.com/chart?';
//functions
function getQrCodes(array) {
var qrOptionArray = [];
$.each(array, function (ix, val) {
//options gets chl property redefined for each element
//in the array
var options = {
cht: 'qr',
chs: '300x300',
chl: array[ix]
}
qrOptionArray.push(options);
console.log('this qr should be: ' + array[ix]);
console.log(qrUrl + $.param(options));
var $img = $('<img />').attr('src', qrUrl + $.param(options)).appendTo('body');
});
return qrOptionArray;
}
getQrCodes(list);
});