NAME jQuery::Loader - Load (and cache) the jQuery JavaScript library VERSION Version 0.03 jQuery VERSION Version 1.2.6 SYNOPSIS use jQuery::Loader; my $loader = jQuery::Loader->new_from_internet; print $loader->html; # The above will yield: # # If you need the minified version, you can use the following: $loader = jQuery::Loader->new_from_internet(filter => "min"); # Which will yield: # You can also cache jQuery locally: my $loader = jQuery::Loader->new_from_internet(cache => { dir => "htdocs/assets/\%l", uri => "http://localhost/assets/\%l" }); print $loader->html; # The above will yield: # $loader->source_html Generate and return a string containing HTML describing how to include components. For example, you can use this in the
section of a web page. Here is an example: AUTHOR Robert Krimen, "