Expalin this code???

windows

Guest
Hi<br />
<br />
When mouseover a hyper link I just want to dispaly a paragraph of messages like tool tip. I tried to use the following code. <br />
I am getting "Object expected" error message.<br />
What are these dlc,dcc,drc ?? <br />
<br />
<tr><br />
<td width="123"><p align="center"><strong><small><small><font face="Verdana"><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"#" onmouseout="nd(); return true;"<br />
onmouseover="drc('Message here'); return true;">Dr.<br />
S K Khanna</a></font></small></small></strong></td><br />
<td width="319"><p align="center"><strong><small><small><font face="Verdana"><a href=http://www.webdeveloper.com/forum/archive/index.php/"#"<br />
onmouseout="nd(); return true;"<br />
onmouseover="dcc('Message here'); return true;">Mr. John Suri</a></font></small></small></strong></td><br />
<td width="158"><p align="center"><strong><small><small><font face="Verdana"><a href=http://www.webdeveloper.com/forum/archive/index.php/"#"<br />
onmouseout="nd(); return true;"<br />
onmouseover="dlc('Message here'); return true;">Shri.<br />
Vinod Goel</a></font></small></small></strong></td><br />
</tr><br />
<br />
<br />
shara<!--content-->Javascript functions - these show the tooltip messages<!--content-->What is wrong with this code??<br />
Why am I getting Object expected error??? Can any brief me about these functions???<br />
<br />
shara<!--content-->You haven't go all the code you need to make the tooltips work.<br />
Read up on Javascript here (<!-- m --><a class="postlink" href="http://www.w3schools.com/js/default.asp">http://www.w3schools.com/js/default.asp</a><!-- m -->)<!--content-->The code you have is the basic on mouseover functions,<br />
<br />
The code is obviously in 2 parts a Javascript (it should be in these brackets <script></script>) and the links like you have.<br />
<br />
I suggest you go back to where you got the script and re Download <!--more--> the script.<br />
<br />
The functions dlc etc. refer to javascript locations as fang said, they bascically are saying to the javascript "i have clicked this now do this" it is like a link inside the page...<br />
<br />
hope that made sense...<br />
<br />
Spyke.<!--content-->If you did a copy & paste, go back to where you got your code & look for the other part. It's likely to be found in the <head> section.<!--content-->
 
Back
Top