Jquery .. i don't get it

hi guys … do you know why this keeps bugging out?


$(document).ready(function() {
        $("img.subCollection").click( function () {
                        var src = $(this).attr("src")

                        $("#bigpic").empty()
                                    .html("<a href=\\"\\" id=\\"close\\"><img src=\\"\\/img\\/delete.jpg\\" id=\\"close\\" border=0 style=\\"float:right;\\"  /><\\/a><center><img src=\\"" + src + "\\" id=\\"pop\\" style=\\"border:solid 1px lightgray;\\" /><\\/center>")


        });
        $("a#close").click( function ()
        {
            $("#bigpic").empty();
            return false;
        });
    });


I always get “Object doesn’t support this property or method”

thanks in advance…

nevermind… I found it… it was a typo…