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

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

c++ - compiler errors when initializing EXPECT_CALL with function which has program_options::variables_map as parameter -

How do I check if an insert was successful with MySQLdb in Python? -