The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

HTML::Widget::Plugin::JS - a JavaScript variable declaration emitter

VERSION

version 0.002

js_var

js_vars

These are two names for the same widget. Given a hashref, they will produce JavaScript code to assign the data in the hashref.

In otherwords, this widget:

  $fac->js_vars({
    foo => { a => 1, b => 2 },
    bar => [ 4, 2, 3 ],
  });

...will be rendered something like this:

  var foo = { a: 1, b: 2 };
  var bar = [ 1, 2, 3 ];

js_anon

This widget converts a given data structure to an anonymous JavaScript structure. This basically just provides a widget factory interface to Data::JavaScript::Anon.

AUTHOR

This code was written by Ricardo SIGNES.

This code is copyright (c) 2008, Ricardo SIGNES. It is free software, available under the same terms as perl itself.