Object has no method ‘curCSS’
- By simion
- 27 August, 2013
- No Comments
I was implementing jquery-ui autocomplete on an older project, and came across this error:
1 2 3 |
Uncaught TypeError: Object function (a,b){return new p.fn.init(a,b,c)} has no method 'curCSS' |
Problem: Jquery removed .curCSS() method in 1.8 version.
The solution: … Either upgrade jquery-ui (recent versions do not need ‘curCSS’ method), or downgrade jquery.
Good luck!
Leave a Reply