jQuery reload div's content (dynamically rendered)

前端 未结 3 398
走了就别回头了
走了就别回头了 2020-12-11 08:13

I have a div that is generated html via Expression Engine. I\'m using ajax submit:

$(\'#login-form\').ajaxForm({  
    // success identifies the function to         


        
3条回答
  •  余生分开走
    2020-12-11 08:24

    And for your pretty fade in

    success : function(data) {
       $("#panel").hide().html(data).fadeIn('fast');
    } 
    

提交回复
热议问题