Robert_Junior
Robert_Junior

Reputation: 1123

MVC4 javascript file location

I am trying to create MVC4 application. The scaffolded scripts contained older jquery so I updated it to 1.10 but corresponding mvc4 file unobtrusive-ajax.js seems to stop working as it is using live() instead of on()

Where can i find jquery.unobtrusive-ajax.js for jquery-1.10.2?

Upvotes: 0

Views: 27

Answers (1)

Keith Rousseau
Keith Rousseau

Reputation: 4475

You can get the latest jquery unobtrusive on NuGet. https://www.nuget.org/packages/Microsoft.jQuery.Unobtrusive.Ajax/

Upvotes: 1

Related Questions