javascript - jQuery multiple file upload throwing error onload -
javascript - jQuery multiple file upload throwing error onload -
i trying utilize jquery plugin ( http://www.fyneworks.com/jquery/multiple-file-upload/#tab-examples ) , reason when seek set events on "function expected". can help me?
everything works fine, except trying bind events.
$(document).ready(function () { $('#<%=flimage.clientid%>')[0].multifile(function () { onfileremove: function (element, value, master_element) { alert('heyoooo'); } }); });
it looks need supply 'onfileremove' function object parameter:
$('#<%=flimage.clientid%>')[0].multifile({ onfileremove: function (element, value, master_element) { alert('heyoooo'); } }); this allows supply multiple functions parameters , function parameters optional.
javascript jquery asp.net jquery-plugins
Comments
Post a Comment