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...
- 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);
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:
- if($("#divID").valid() == false){
- return false;
- }else{
-
$("#divID").rapidEdit("/ajax/saveContent.php", options);
- }