Skip to content

$.curCss has been removed from jQuery 1.8.0 #8

Description

@sebfz1

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions