I have a HTML form and I am using an input of type "file". This gives me a browse button to upload a file. When I chose a file and click on save the browse button should be disabled. I have used jquery to disable the browse button. Now even after it is disabled and I hover over it the color of the button changes. So could anyone let me know how to remove the hover property for this button using jquery? I want to disable the hover property only after the user clicks save. Below is the code HTML code for the browse button.
<input type="file" id="fileUpload" accept="text/csv"
title="Browse" ng-disabled="fileInMemory"/>