According to http://blog.jquery.com/2012/08/09/jquery-1-8-released/
$.curCSS: This method was simply an alias for jQuery.css() from jQuery 1.3 onward. Although it has never been part of the documented API, some external code has been known to use it, perhaps thinking it was “more efficient.” Now it’s “more gone.”
Therefore, the following line should be changed, from:
var oldDisplay = $.curCSS(calEl, 'display');
to:
var oldDisplay = $.css(calEl, 'display');
Thanks in advance,
Sebastien.
According to http://blog.jquery.com/2012/08/09/jquery-1-8-released/
Therefore, the following line should be changed, from:
var oldDisplay = $.curCSS(calEl, 'display');to:
var oldDisplay = $.css(calEl, 'display');Thanks in advance,
Sebastien.