Jaime Montoya
Jaime Montoya

Reputation: 7701

When was .on() introduced to jQuery?

I have a legacy code that uses the Live Query plugin extensively. This code uses jQuery 1.3.1. I need to replace the deprecated .livequery() with the modern .on() (http://api.jquery.com/on/), but I do not think .on() was available with jQuery 1.3.1. In which version of jQuery was was .on() incorporated for the first time? Thank you.

Upvotes: 0

Views: 56

Answers (1)

djamaile
djamaile

Reputation: 752

On the top right side of the webpage you can see in which version it was added. The .on() function was added in 1.7 version.

Upvotes: 1

Related Questions