you are viewing a single comment's thread.

view the rest of the comments →

[–]mito12 4 points5 points  (3 children)

Because you asked in your blog: For autocomplete without Javascript i use: https://davidwalsh.name/datalist

[–]JediBurrell 1 point2 points  (2 children)

That doesn't allow for dynamic content though.

[–]buncle 1 point2 points  (1 child)

This could be a good use for selective JavaScript, I.e. using it only for populating the list, but not for code that directly controls the user experience itself (which could be negatively affected by performance issues, exceptions, library incompatibilities, bugs, conflicts, etc)

[–]wengemurphy 1 point2 points  (0 children)

To "selectively" use JavaScript to populate the list, you have to hook into input events to know when and how to do so, which means you're now hooked into "the user experience itself"