Is_this_my_username
Is_this_my_username

Reputation: 176

Microsoft Edge, shows image search upon hovering

While, testing a webpage on Edge recently, I noticed that upon hovering over an image, Edge shows a menu like this.

enter image description here

This is not in Chrome or Firefox and is only present in Edge. I want to know, how can I remove this, via code so that my webpage doesn't show this ?

Upvotes: 1

Views: 2261

Answers (2)

Sakshi Mundra
Sakshi Mundra

Reputation: 1

This can be resolved by updating to the latest version of Edge. The most recent version no longer has this menu.

Upvotes: 0

Deepak-MSFT
Deepak-MSFT

Reputation: 11335

I try to check the image you posted and it looks like the feature Visual Search.

Visual search lets you quickly explore more related content about products, landmarks, celebrities, animals or plants you see in an image.

If you are using an older version of the Edge browser then try to update it to the latest version and check for the issue. Some users have reported that they are not facing the said issue in the latest version of the Edge browser.

I would suggest you try to add the code below to your image may help to avoid it.

pointer-events: none;

If you manually want to disable that feature then you could add edge://settings/appearance/visualSearch in the address bar and press the Enter key.

disable the option, 'Show visual search on image hover'.

enter image description here

Helpful Reference:

  1. How do I prevent Edge from showing the visual search icon when users hover over an image?

Upvotes: 2

Related Questions