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, "" SEE ALSO jQuery YUI::Loader BUGS Please report any bugs or feature requests to "bug-js-jquery-loader at rt.cpan.org", or through the web interface at . I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT You can find documentation for this module with the perldoc command. perldoc jQuery::Loader You can also look for information at: * RT: CPAN's request tracker * AnnoCPAN: Annotated CPAN documentation * CPAN Ratings * Search CPAN ACKNOWLEDGEMENTS COPYRIGHT & LICENSE Copyright 2008 Robert Krimen, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.