Monday 21 June 2010

How to post form using ajax in jquery?

 $.post(url, $("#"+$formname).serialize(),
    function(data){
      $('#content').html(data);
    });

Cheers!

No comments:

Post a Comment