$().live(function(){}); and jQuery.browser is undefined in jQuery 1.9.0
If I user jQuery 1.8.3 instead of jquery 1.9.0 it is working fine in my project.
And what are the functions undefined and why?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Please read the jQuery upgrade Guide, in 1.9 release they have removed all the deprecated methods from previous releases. But they have provided a migration plugin to help the developers during the migration period.
The jQuery.live was deprecated in v1.7.0 in favour of jQuery.on, please use this in your code.
You can include the migrate plugin