Skip to main content

Bug Tracker

Side navigation

#4454 closed bug (invalid)

Opened March 30, 2009 09:14PM UTC

Closed November 18, 2009 02:39AM UTC

[autocomplete] - jQuery plugin 1.0.2

Reported by: luizromero Owned by:
Priority: major Milestone: 1.2
Component: ajax Version: 1.2.6
Keywords: autocomplete Cc:
Blocked by: Blocking:
Description

Hi,

I found a problem with autocomplete when typing the 1st caracter after 'minChars' parameter, so i change the code like folow.

Javascript error message:

s.toLowerCase is not a function

Code with problem:

function matchSubset(s,sub){

if(!options.matchCase)

s=s.toLowerCase();

I change to:

function matchSubset(s,sub){

if(!options.matchCase)

s=String.fromCharCode(s).toLowerCase();

Is my change is correct or i made a mistake ?

thank you

Luiz Romero.

Attachments (0)
Change History (1)

Changed November 18, 2009 02:39AM UTC by dmethvin comment:1

resolution: → invalid
status: newclosed

This belongs in the jQuery UI tracker, http://dev.jqueryui.com