Jquery .show() not working in firefox

后端 未结 4 2071
南旧
南旧 2021-02-14 01:30

I have a problem with the jquery show function in firefox.

Situation: I have loaded a iframe with an aspx page in a popup (fancybox). In that aspx page I have a button

4条回答
  •  青春惊慌失措
    2021-02-14 02:29

    Just write down like $("#psharebutton").attr('display','') or $("#psharebutton").attr('display','block').

    function dolinkedin(url, title, summary, source) {
            $(".smbutton").addClass("buttonDisabled");
            $("#linklinkedin").removeClass("buttonDisabled");
            $("#psharebutton").attr('display','');
    
            parent.sizeFancybox();
        }
    

提交回复
热议问题