onDeviceReady: function() {
window.imagePicker.getPictures(
function(results) {
for (var i = 0; i < results.length; i++)
{
alert('Image URI: ' + results[i]);
}
}, function (error) {
alert('Error: ' + error);
});
}
This plugin allows selecting multiple images from the gallery. I have successfully used it to select multiple images, but now I need to display them in the HTML view section. SuccessCB - Callback function when image is selected.
FailCB - Callback function when no image is selected.
Options - See Options