How to attach callback to jquery effect on dialog show?

前端 未结 5 843
谎友^
谎友^ 2020-11-29 07:40

My problem is that I do not know how to attach callback to the jquery ui dialog show.

The show is actually an option:

$( \".selector\" ).dialog({ sh         


        
5条回答
  •  爱一瞬间的悲伤
    2020-11-29 07:49

    I downloaded the jquery ui dev bundle and found out that the callback is set with "complete":

    $( ".selector" ).dialog({ show: 'slide', complete: function() {} });
    

    Thanks for everyone trying to help solve this :)

提交回复
热议问题