I am currently using an html app that is being loaded in a WebView. My goal is to prevent a specific link from loading when clicked by using shouldOverrideUrlLoading, where I return true to stop the URL from loading. While this method works well, the link is still being highlighted as if it were clicked. Is there a way to remove this highlighting if the link is pressed but not loaded?
Thank you