• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

How Can I get the Tool tip on different components in HTML???

 
Ranch Hand
Posts: 38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Scriptians,
Can you help me out, I need a Tool tip on each and every component like textbox, Buttons etc on HTML page. Now How can I do this. Do you any related links for that plz. forward me.
Thankz..
 
Ranch Hand
Posts: 32
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi
Add the title parmeter to each element of the form. Below is an example of tooltip for textbox and submit button:
<p><input type="text" name="T1" size="20" title="textbox"></p>
<p><input type="submit" value="Submit" name="B1" title="submit button" ></p>
Hope this helps.
 
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey I didn't know that. I like
My fear is that this might be browser dependant so an alternative could be to have an image of a question mark next to each item and set the alt for the image.
Dave.
 
You showed up just in time for the waffles! And this tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic