.Show method not working with button..
I've fairly fluent in Jquery but why is this .show() to show the Draw button. The deal button disappears fine but the Draw button never appears. Really don't understand why this would be difficult. Also include jsfiddle link below code.
HTML
<input type="button" id="btnDrawCard" value="Deal">
<input type="button" id="btnReDraw" value="Draw">
jquery
$("#btnDrawCard").on("click", function () {
$("#btnReDraw").show();
$("#btnDrawCard").hide();
});
css
#btnReDraw {
visibility:hidden
}