asp.net mvc 3 - MVC3 - Update jQuery from 1.5.2 to latest -
i have mvc3 project uses jquery 1.5.2 , update latest version. bit new mvc3 , wondering consequences of updating jquery? have experience whit this? , how can achieved?
best regards dep.
in general
there big changes in jquery 1.9.x compared previous versions. can check changes here. jquery team did great work , created jquery migrate plugin. idea change 1.5.2 version latest , add link jquery migrate plugin (after jquery).
what migration plugin checks if you're using deprecated features (like .live) , plugin works proxy new implementation. should check developer toolbar console messages , make changes according tips.
the jquery migration plugin temporary solution adds overhead , should make changes if you're using deprecated features.
asp.net mvc
depending on 3rd party libraries you're using (telerik, devexpress etc.) might errors if use features/api calls not supported anymore. maybe have newer version implemented using current jquery version.
Comments
Post a Comment