This function should stop displaying the #bt_pagamento
and start showing the #bt_loading
. But Safari (version 6) is the only browser that this function doesn't work. In early versions of Safari (version 5.1.9 Mac and 5.1.7 Win) it worked perfectly.
$("#bt_pagamento").click(function () {
$(this).css({'display':'none'});
$("#bt_loading").show();
});
Does anyone know a work around for this?
CSS
HTML
JS