• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

alert message over text

 
Ranch Hand
Posts: 45
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
can anyone tell me how to get an alert message over a text not pictures or images .dont suggest me for alt="msg" coz this works for only images .
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
alt is for images, title is for everything else
Eric
 
sunita shaw
Ranch Hand
Posts: 45
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
eric thanx but this wont work coz title works for link messages ...for simple text like:
<td class='design_table_compulsory_leave' width=20 align=center valign=bottom ><font class='TaskDataFONT' style='font-weight:bold;' >CPL  </font></td>"
what do i use.i wont that when the mouse points at CPL then its full form should be displayed
lemme know soon
 
Ranch Hand
Posts: 67
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What Eric suggested is perfectly right..
u use the title attribute to provide the mouse over text.
Use the title attribute in the preceding tag, like this..
 
Eric Pascarello
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<font class='TaskDataFONT' style='font-weight:bold;' title="The Text Here?">CPL </font>
Is that what you are after?
 
sunita shaw
Ranch Hand
Posts: 45
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hello rajeshwari!
thanx but when i do it the way u've adviced me i get the following error:
org.apache.jasper.JasperException: Unable to compile C:\sunita\project\jakarta-tomcat-3.3.1\work\DEFAULT\examples\jsp\_final\display_emp_alldate_24.java:322: ')' expected.
out.println("SUL ");
^
1 error
 
Ranch Hand
Posts: 937
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<td class='design_table_compulsory_leave' width=20 align=center valign=bottom><font class='TaskDataFONT' style='font-weight:bold;' title = "learnm more about CPL">CPL </font></td>
SHOULE BE LIKE THIS
<td class='design_table_compulsory_leave' width=20 align=center valign=bottom TITLE ="WATEVER"><font class='TaskDataFONT' style='font-weight:bold;' title = "learnm more about CPL">CPL </font></td>
EITHER <FONT> OR CLASS NOT <FONT CLASS> RT NOW TITLE INSIDE THIS INCORRECT TAG <FONT CLASS>
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic