Multiple Events in onMouseOver/onMouseOut event (1 Viewer)

Velosai

Registered Headache Cause
Local time
Today, 11:33
Joined
Aug 3, 2007
Messages
38
Hi,

Need some help, creating an ASP page (creating a gant chart), with fields to show more information on the gant they have the mouse over. My code so far for the event is

onMouseOver="form_name.field_name.value='data to insert';form_name.field_name.value='data to insert'" etc

However, its not work and can't find out why. Can anyone help?

Thanks
 

Velosai

Registered Headache Cause
Local time
Today, 11:33
Joined
Aug 3, 2007
Messages
38
Ok, sorted it out, I was using a javascript and vbscript in the same page, so had to force it to javascript

onMouseOver="javascript:form_name.field_name.value='data to insert';form_name.field_name.value='data to insert'" etc
 

Users who are viewing this thread

Top Bottom