Thew
Thew

Reputation: 15959

this property is not supported by object?

$(document).ready(function(){
                ('#mainField').click(function(){
                    $("#editor").animate({width: 985, height: 200}, 1500);
                    $("#closeEditor").css("display", "inline");
                });
            });

This piece of code doesn't work, whats wrong?! It says: "this property is not supported by object" at the 2nd row..?

Upvotes: 0

Views: 137

Answers (1)

meder omuraliev
meder omuraliev

Reputation: 186742

('#mainField')

404 No dollar found.

Upvotes: 4

Related Questions