Disabling browser tooltips on links and s

前端 未结 8 2252
误落风尘
误落风尘 2020-11-29 06:55

I want to suppress the web browser\'s default tooltip display when a user hovers over certain links and elements. I know it\'s possible but I don\'t know how. Can anyone he

8条回答
  •  [愿得一人]
    2020-11-29 07:35

    Add this element to your html

        onmouseover="title='';"
    

    For example i have a asp.net checkbox I store a hidden variable but do not want the user to see on as the tooltip.

提交回复
热议问题