views:

21

answers:

1

How do I determine the versions of jQuery that shipped with each version of WordPress since like version 2.7? Was there a log kept somewhere on this? Because as a plugin developer, I may need to rely on a function that might not work in older versions of WordPress.

A: 

You can query the version of jQuery:

// Returns string Ex: "1.3.1"
$().jquery;

// Also returns string Ex: "1.3.1"
jQuery.fn.jquery;
cletus
Well, yeah, but was looking for a chart where hopefully someone already recorded this. Perhaps there is not a chart out there?
Volomike