Search code examples
javascripthtmlcsstooltipdelay

How to delay basic HTML tooltip?


I was wondering if there was any way to delay just the classic HTML tooltip (no jQuery plugins like qTip, please). It's just a button as:

<input type="button" title="Click" value="My Button">

I want to know if there is any way to delay the title using pure JavaScript or client-side scripting. From what I have researched, it doesn't seem possible as it is part of the actual OS' GUI programming, which is impossible to access via browser scripting, but if there is any way that I just haven't come across yet, I would love to know! Thanks!


Solution

  • The browser controls the tool tip. If you want to make any changes you will have to create your own. Maybe by using the plug ins your refered to.