How to create tooltips in web application

Dear All,

I have several fields on my form. When I open this form on web I would like to show tooltips for there fields. How it can be done. Please guide me.

Thanks,

Subject: How to create tooltips in web application

JS HEADER//==========================================================================================================================

if (!document.layers&&!document.all&&!document.getElementById)

event=“test”

function showtip(current,e,text){

if (document.all||document.getElementById){

thetitle=text.split(‘
’)

if (thetitle.length>1){

thetitles=‘’

for (i=0;i<thetitle.length;i++)

thetitles+=thetitle[i]

current.title=thetitles

}

else

current.title=text

}

else if (document.layers){

//document.tooltip.document.write(‘’+text+‘’)

document.tooltip.document.write(“<layer id="test">text inside a layer!”)

document.tooltip.document.close()

document.tooltip.left=e.pageX+5

document.tooltip.top=e.pageY+5

document.tooltip.visibility=“show”

}

}

function hidetip(){

if (document.layers)

document.tooltip.visibility=“hidden”

}

//====================================================================================================================================

  1. COPY THE FOLLOWING HTML : convert passthru HTML
  1. WHERE EVER U WANT TOOL-TIP SELECT TEXT AND CLICK

CREATE → HOTSPOT → SELECT “ACTION HOTSPOT”

SELECT JS THEN

ONMOUSE OVER

showtip(this,event,‘Note:\nSpecify a title that is unique for each application.’)

ONMOUSE OUT

“hidetip()”

GOOD LUCK