JQuery Validatoin Plugin in DNN
Last Post 04/25/2010 3:52 AM by Eurocenter. 0 Replies.
Author Messages
Eurocenter
Nuke Newbie
Nuke Newbie
Posts:5


--
04/25/2010 3:52 AM  
Hi All,

I'm trying to use JQuery Validation Plugin (http://bassistance.de/jquery-plugin...lidation/) to do client side form validation in DNN modules. Since I can't access the form element from a dnn module I tried selecting each control and invoking validate method on each.
Eg :

    jQuery(document).ready(function() {
        jQuery("#uxTitleTextName").validate();
    });

How ever nothing gets invoked prior to the form being submitted thus no client side validation logic.

I have both the jquery js and validation js inside the section of the page. Can you please help me by pointing to a direction where I could be doing something wrong.

Thanks,
EC


---