Jquery UI provides very best features that can be applied to html controls, one such feature is applying JQuery UI styling for buttons. Applying button style as such is very easy, but how can this be applied for a html element input(type=file).
Now that looks little tricky. Ok first consider following html :
Now bind events
$(document).ready(function () {
$('#btnBrowseAttachment').button();
...