buttonText
String
'SELECT FILES'
The text that will appear on the browse button. This text is rendered as HTML and may include HTML entities.
Demo
|
1 |
<input type="file" name="file_upload" id="file_upload" /> |
|
1 2 3 4 5 6 7 |
$(function() {
$("#file_upload").uploadify({
'buttonText' : 'BROWSE...',
'swf' : '/uploadify/uploadify.swf',
'uploader' : '/uploadify/uploadify.php'
});
}); |

