I have update from jQuery 1.7.1 to 1.10.2 and now below problem appears in jquery.unobtrusive-ajax.js:
$("a[data-ajax=true]").live("click", function (evt) {
evt.preventDefault();
asyncRequest(this, {
url: this.href,
type: "GET",
data: []
});
});
the issue is in live. it says $("a[data-ajax=true]")
does not accept method or property live
.
How to solve this? should I upgrade jquer.unobtrusive-ajax.js or something like this?