I'm using the jQuery validation plugin on a form loaded via ajax.
For whatever reason, it isn't working. Is there something special I need to do b/c it's loaded after js is initialized? Any ideas?
Edit:
Using the code from the plugin site:
$().ready(function() {
// validate the comment form when it is submitted
$("form").validate();
});