Hide and show function not working in Safari

后端 未结 2 1824
你的背包
你的背包 2020-12-22 10:30

This function should stop displaying the #bt_pagamento and start showing the #bt_loading. But Safari (version 6) is the only brows

2条回答
  •  情深已故
    2020-12-22 11:06

    CSS

    
    

    HTML

    link
    
    this is bt_loading

    JS

    $(document).ready(function() {
        $("#bt_pagamento").click(function (e) {
            e.preventDefault();
            $(this).addClass('hide');
            $("#bt_loading").removeClass('hide');
        });
    });
    

提交回复
热议问题