
Template::Flute::Filters::JsonVar - JSON to Javascript variable filter

Takes a Perl structure or a JSON string and returns Javascript which parses the JSON string with Jquery and assigns it to the variable json.
Example:
{username => 'shopper@nitesi.biz', city => 'Vienna'};
results in the following JavaScript:
var json = $.parseJSON('{"post":"Vienna","username":"shopper@nitesi.biz"}');

JSON module.

The init method allows you to set the following options:
Value is either jquery or eval.
Filters the given Perl structure to a JSON string.