innostudio / fileuploader

Beautiful and powerful HTML file uploading tool. A jQuery, PHP and Node.js plugin that transforms the standard input into a revolutionary and fancy field on your page.
141 stars 25 forks source link

Get data-attribute from file #32

Closed tornako closed 5 years ago

tornako commented 5 years ago

Hello, how can I get the value of a data-attribute from the input field of the image?

I imagine that with callback features.

onSelect: function(item) { var ep = $(this).attr("data-ep"); },

Thanks!

innostudio commented 5 years ago

@tornako using the following code:

onSelect: function(item, listEl, parentEl, newInputEl, inputEl) { var ep = inputEl.attr('data-ep'); },

tornako commented 5 years ago

Thank you very much, it's going great!