JSFiddle - React, Tailwind, and code Playground
HTML
<div id="product_sheet_download">
<div class="ui-widget">
<label for="industry">Industry: </label>
<input id="industry" />
<input class="go_button" type="image" src="https://static.squarespace.com/static/511a23e4e4b0f4197c0e0f46/t/5277caece4b0a23a823e98de/1383582444988/go.png?format=100w" alt="Go">
</div>
</div>
JavaScript
$( "input[type=image]" ).button().removeClass("ui-state-default");
$( "input[type=image]" ).button().hover(function(e){
$(this).removeClass("ui-state-hover");
});