How to prevent a blinking cursor from being shown when something clickable is clicked?

0
Clicking on a text in a webpage, you normally see a blinking cursor. I guess it is not possible to prevent this behaviour. But I do see that clicking a button, the blinking cursor is normally not shown. For instance, if you click a button on this page (like Shop in the menu above), no blinking cursor is shown before the click action is handled. In my Mendix application the blinking cursor is being shown when I click a button. Is there a way to prevent this?
asked
2 answers
4

Hi Toon,

You can change it using CSS.

cursor: default;

answered
0

Here is the picture with how I added the cursor: default to a clickable <div>

answered