How to hide

after it displayed the messages?

前端 未结 4 532
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-19 14:37

I am working on JSF application in primefaces in that i am showing an information to the user via .

So when the user click submit the

4条回答
  •  无人共我
    2021-01-19 14:56

    I came across the attention, and did it this way:

    function hideMsg(){
    $("#msg").delay(1000).hide(1000);
    }
    
    oncomplete="hideMsg()"
    

提交回复
热议问题