package JavaScript::DataFormValidator; use warnings; use strict; use base 'Exporter'; use vars (qw/@EXPORT $VERSION/); @EXPORT = (qw/ &js_dfv_profile &js_dfv_onsubmit /); =head1 NAME JavaScript::DataFormValidator - JavaScript form validation from a Perl Data::FormValidator profile =cut $VERSION = '0.50'; =head1 SYNOPSIS This module helps with setting up a JavaScript validation for a form using Data.FormValidator, a JavaScript port of L. A key feature of this system is that it allows you to use the I validation profile for both Perl and JavaScript validation. You should read the docs for the JavaScript implementation for some limitations: http://www.openjsan.org/doc/u/un/unrtst/Data/FormValidator/ Here's an example with HTML::Template syntax:
>