I'm using FineUploader and I'd love to be able to programmatically trigger the file browser. I imagine something like this:
uploader.fineUploader('browseFiles');
Unfortunately I couldn't find anything like that around the interwebs. Ideas?
EDIT
Tried the following as suggested but the file browser is not triggered :( The issue seems to be that this would call the click event handler defined by the developer (which, in my case, doesn't exist), not the one defined by FineUploader.
$('.qq-upload-button-selector').click();
$('.qq-upload-file-selector').click();
$('.qq-upload-filename-selector').click();
$('.qq-edit-filename-selector').click();
$('.qq-upload-file').click();
$('input[type="file"]').click();