You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In line 61: var value = raw_attrs[i].nodeValue.
nodeValue is deprecated and Chrome complains about it.
Is better to use .value attribute: raw_attrs[i].value
selectToAutocomplete.js is insanely good :)
The text was updated successfully, but these errors were encountered:
In line 61: var value = raw_attrs[i].nodeValue.
nodeValue is deprecated and Chrome complains about it.
Is better to use .value attribute: raw_attrs[i].value
selectToAutocomplete.js is insanely good :)
The text was updated successfully, but these errors were encountered: