It looks like the problem has to do with me still having prototype on
the page.  It's the first jQuery site I ever did and the autocomplete
plugin wasn't far enough along for me to use at that point.  I've
pointed to an older version of jQuery until I get around to rewriting
that page to use the jQuery autocomplete.

On Jul 8, 1:39 pm, Shelane Enos <[EMAIL PROTECTED]> wrote:
> I just found out that this function that worked (doubled checked to confirm)
> worked under 1.2.4 but isn't working under 1.2.6.  I'm not sure what.  Can
> anyone see anything obvious?
>
> bindDeleteLinks = function(who){
>         $("a.rembtn", '#' + who).unbind('click');
>         $("a.rembtn", '#' + who).click(function(){
>         console.log('bound and clicked ' + who);
>             $(('#' + this.id + 'row')).css({display:'none'});
>             $.get('includes/tools/runtime.lasso?task=meetings&who=' + who +
> '&method=remove&pageID=' + pageID + '&rel=' + this.id);
>             return false;
>         });
>     }
>
> Under 1.2.6, the console message doesn't even show.

Reply via email to