jQuery Validation + jQuery RapidEdit...

jQuery Validation + jQuery RapidEdit...

Hi,
I was just wondering about In-line editing and I have found this jQuery plug-in called RapidEdit and it should suit my needs but before I have some questions about it...
  1. Can I specify one div class or id would be handled with one php script and another one with other one. Would it be phrased like this:  $("#divID").rapidEdit("/ajax/saveContent.php", options);
  2. I want to make user profile modified using In-line editing I will have to use jQuery Validation... How to make RpidEdit go only after validation is finished would it be something like this:   
  1. if($("#divID").valid() == false){
  2.       return false;
  3.     }else{
  4.       $("#divID").rapidEdit("/ajax/saveContent.php", options);
  5.     }