UploadiFive™ uses the recommended plugin pattern for jQuery. This means all method calls are kept under a single plugin namespace. To use the different method calls, simply call UploadiFive on the DOM element with the method call as the first argument.
$('#file_upload').uploadifive('upload');
Any additional arguments added after the method name are passed to the method.
$('#file_upload').uploadifive('cancel',$('.uploadifive-queue-item').first().data('file'));
You can see what methods are available on the documentation page.

