Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help!!!

Status
Not open for further replies.

Chasis

Programmer
Dec 20, 2000
1
0
0
CR
How can I used a variable in VBScript that it is defined in a JavaScript?
 
just reference it as you would anyother variable

<script language=&quot;javascript&quot;>
fut=&quot;cracka&quot;
</script>

<script language=&quot;vbscript&quot;>
alert(fut)
</script> jared@aauser.com
 
I am trying to do a mouseover command in vbscript which will change an img src gif to another img src gif...how can i do this?
 
Hi,
I am not sure how to change the text's color (href link) to red during the mouseover event. here is an example:
<html>
<title> SOLUTIONS Metrics Help</title>
<head>
</head>
<body>
<script LANGUAGE="vbscript">
sub displaymsg

end sub
</script>
<ol>
<li><a onmouseover="displaymsg()" href="AdjAPL.htm" target=adjapl><b>Adjusted APL</a></li>
<li> <a href="AplDemoH.htm" target=apldemo>APL Demographics</a></li>
</ol>
</body>
</html>

I would like to the href in bold or different color or/and may be bigger size font during the mouseover event.

thanks
Kanan
 
sorry I replied to this message by mistake. I meant to post this as a new message.
kanan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top