[jQuery] Re: Using jQuery in Wordpress

2008-01-07 Thread Gerry Tucker
This page http://scratbycoastalerosion.org.uk/gallery/?photoset_id=72157603031152209view=slideshow from one of my Websites is using enqueued jQuery and the Cycle plugin for a gallery. My own shameless plug. Gerry -- From: Priest, James

[jQuery] Re: Using jQuery in Wordpress

2008-01-07 Thread Gerry Tucker
Sean, JQuery in WP 2.3.2 is up to version 1.1.4. I imagine at WP 2.5 it will move to v1.2.x. In your header file (header.php) you need to add the following line BEFORE the line that reads ?php wp_head(); ?. ?php wp_enqueue_script('jquery'); ? so that it reads: ?php

[jQuery] Re: Using jQuery in Wordpress

2008-01-07 Thread Gerry Tucker
Sean, JQuery in WP 2.3.2 is up to version 1.1.4. I imagine at WP 2.5 it will move to v1.2.x. In your header file (header.php) you need to add the following line BEFORE the line that reads ?php wp_head(); ?. ?php wp_enqueue_script('jquery'); ? so that it reads: ?php

[jQuery] Fw: [jQuery] Using jQuery in Wordpress

2008-01-07 Thread Gerry Tucker
Sean, In your header file (header.php) you need to add the following line BEFORE the line that reads ?php wp_head(); ?. ?php wp_enqueue_script('jquery'); ? so that it reads: ?php wp_enqueue_script('jquery'); ? ?php wp_head(); ? Gerry --