onFallback
function
Triggered during initialization if a compatible version of Flash is not detected in the browser.
Arguments
No arguments are passed to this function.
Demo
|
1 |
<input type="file" name="file_upload" id="file_upload" /> |
|
1 2 3 4 5 6 7 8 9 |
$(function() {
$("#file_upload").uploadify({
'swf' : '/uploadify/uploadify.swf',
'uploader' : '/uploadify/uploadify.php',
'onFallback' : function() {
alert('Flash was not detected.');
}
});
}); |

