#Possible to disable autocomplete for contenteditable divs in WKWebView?

4 messages · Page 1 of 1 (latest)

heady geode
#

Normally this will disable system-level autocomplete in contenteditable divs for Safari on Mac / iOS
spellCheck="false" autoComplete="off" autoCorrect="off"
It seems the one time this doesn't work is within a WKWebView. Anyone found a way to disable this?

heady geode
heady geode
#

Unfortunately this is only possible by providing a WKWebViewConfiguration when creating the WKWebView and I don't think Tauri provides a way to do that

dense depot
#

did you try writingSuggestions="false" as well? May only work on textarea elements but worth a try here as well.