Up until Lift 2.4, we included two versions of jQuery, 1.3 and 1.4. But both are very old versions by now. After some discussions on the mailing list we decided that the best solution moving forward was to require users include their own version of jQuery.
You can download jQuery and include it on your projects webapp/js folder (you may have to create the js folder). Then you reference this jQuery file in your template by using:
<script type="text/javascript"
src="/js/jquery-1.7.2.min.js" id="jquery">
</script>
Instead of downloading jQuery to your project, you just reference jQuery in your tempalte like this:
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" id="jquery">
</script>
This is a module written by one of the Lift committers, Peter
Petersson.
The idea behind this module is that it will provide easy jquery
upgrade/downgrade of upstream updates.
The module provides min version(s) of the jQuery file(s) in
production mode, while providing the regular
uncompressed version during development.
This is a separate module to allow rapid release cycles to keep
up with jQuery upstream.
Please refer to the README.md file for instructions on using this module
If you are having problems getting started, head over to the mailing list.
2018/07/21 The Lift team is proud to announce the release of Lift 3.3.0.
2018/01/27 The Lift team is proud to announce the release of Lift 3.2.0.
2017/12/16 The Lift team is proud to announce the release of Lift 3.2.0-RC1.
2017/11/16 The Lift team is proud to announce the release of Lift 3.2.0-M3.
2017/09/15 The Lift team is proud to announce the release of Lift 3.2.0-M2.
2017/07/23 The Lift team is proud to announce the release of Lift 3.2.0-M1.
2017/07/02 The Lift team is proud to announce the release of Lift 3.1.0 final.
2017/06/18 The Lift team is proud to announce the release of Lift 3.1.0-RC1.
2017/05/20 The Lift team is proud to announce the release of Lift 3.1.0-M3.
2017/04/13 The Lift team is proud to announce the release of Lift 3.1.0-M2.
Entwicklung von Web-Applikationen mit Lift und Scala by Thomas Fiedler and Christoph Knabe.
Simply Lift, by David Pollak is an open source book, available for free in both PDF and HTML versions at http://simply.liftweb.net/.
Exploring Lift, by Derek Chen-Becker, Tyler Weir, and Marius Danciu is an open source book, available for free in both PDF and HTML versions at http://exploring.liftweb.net/.
Lift In Action by Tim Perrett is available in print and eBook format.
Lift Cookbook A community question and answers book, free at cookbook.liftweb.net
Lift Web Applications How-to by Torsten Uhlmann is available in print and eBook format.
Lift Application Development Cookbook by Gilberto T. Garcia Jr. is available in print and eBook format.