is there any chance to do a js onclick function, that if someone will click on that icon automatically the title text will be shown, or just when someone moves mouse over it, title will be shown without any delay? Right now title for element comes out after 1 sec.
Share
You won’t be able to override the default browser behaviour of how it displays tooltips containing the
titleattribute text, but you could follow the steps on this other question to show and hide adivcontaining the relevant text (the approach uses jQuery and deals with hover, but adding aclickhandler isn’t much of a stretch).jQuery Hide/Show with Slide on Hover… better way to do this?