I had same trouble with hidding / showing a button. My workaround was to manually remove the display style, like this:
$('#button').attr("style","")
That kills all the manually set style, so you might want to write some smarter code to just remove the display:inline or display:none section instead..
Hope this helps someone.