I'm using jQuery uniform plugin for forms. But the problem is, how do I clear the 'file' input?
I am using:
$("[name=radio]").removeAttr("checked");
$.uniform.update(".colorPicker");
for clearing the radio boxes.
Also using,
$("#file_upload").replaceWith("<input type='file' id='file_upload' name='file_upload'>").html();
to clear the file input.
