Is it possible to invoke fileupload event at button click?
I need something like this
<input type="button" onclick="return buttonClicked()">
And invoking fileupload event should come inside buttonClicked() event
function buttonClicked()
{
preventDefault();
...File upload event
}
I have been searching for this functionality for some time and it seems quite a simple functionality but couldn't find any solution for this.
really need help on this one