Jquery AutoComplete plugin : is it work under jQuery 1.4.2 ?

Jquery AutoComplete plugin : is it work under jQuery 1.4.2 ?


Hello guys...!! 
I'm trying to use this Plugin.... Link Here.

Let's assume that we have this kind of interface....


 <input type="text" id="companyname" name="companyname" size="75" />





And then this jquery



  // the company textfield search
    $('#companyname').live('keyup', function(){

        $('#companyname').smartAutoComplete({
            source: "search-company.jsp"
        });

    } ); 




The "search-company.jsp" ---> is my jsp page that will generate the words divided by line feed.

But,  then.... I wonder... why it generate error?
It's error console of javascript bugging me.... omg.

Does it mean that this jquery autocomplete smart plugin doesn't work on jquery 1.4.2....?
Is there anything I forgot ?