Form Validation livequery JQuery

Form Validation livequery JQuery

Hi,

i am stuck with something different.

I have two radio buttons in one page. When clicked on one.. it will load a form from another file through AJAX call. So it will update the DOM with form. I have set some validation rules for form using JQuery. But $().ready($(form).validate()) doesn't work as this is defined in the file which is loaded through AJAX as DOM is already loaded.

I tried to use $().ready($('formid').liverquery(function(){$(this).validate();}); in parent page of the form page...

But this one also didn't work..

I have gone through this link but doesn't help much..

http://docs.jquery.com/Frequently_Asked ... request.3F

Please help me out how to come over this.