Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm revisiting some old code, and have found it doesn't work with jQuery 1.6 because it cannot find $.handleError(). A quick search of the jQuery code shows nothing, so I guess this function has been removed/replaced.

Does anyone know which version the handleError function was first missing from, and if it has a direct replacement?

share|improve this question

1 Answer

up vote 18 down vote accepted

It looks like handleError() was removed in jQuery 1.5. Most solutions I've seen online create their own error functions. Hope that helps

share|improve this answer
3  
+1. It's worth mentioning that the method was never documented (therefore, never really part of the official API), which is probably why there was nothing about the method's removal in the 1.5 release notes. – Andy E Jun 13 '11 at 11:17
The lack of documentation is what's annoying me! – shanethehat Jun 13 '11 at 11:22
1  
Thanks! Just what I needed – cancelledout Mar 26 '12 at 8:34
+1 needed that. – jakenoble Aug 24 '12 at 9:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.