open animatedModal after ajax request
morteza-gho opened this issue · 4 comments
morteza-gho commented
Hi, how to open animatedModal after ajax request?
arifhussain353 commented
waiting for same issue response
khiconit commented
Me too
sameerpallav commented
its easy... modify modal.click handler to modal.on('open', function(){...})
then use $(selector).trigger('open') in your ajax success.
parvez301 commented
in success function trigger the click event manually.
eg success : function(response){ $("#your-id-name").trigger('click'); }