Disable autocomplete on Live Search

Chrome's autocomplete blocks the results on Live Search. How can we disable it?

Comments

  • Adding this to JS snippets for now. Would be nice if this was configurable someway other than js tho

    document.addEventListener("DOMContentLoaded", function() { const searchField = document.querySelector(".mfn-live-searchform .field"); if (searchField) { searchField.setAttribute("autocomplete", "off"); } });

  • Hi,

    Please always attach a link to your website so we can check it out. If the page is offline(localhost), then our help will be limited. You will have to contact us when the page is online. Also, please make sure that the page is not under maintenance before you provide us with the link.

    I tried to replicate it in my environment but did not succeed.


    Thanks

Sign In or Register to comment.