jasonsalas
IS-IT--Management
Hi everyone,
I've got a composite custom contyrol I built that displays data in a normal <MARQUEE> tag. I'm trying to pause the scrolling of the tag's text by using the <MARQUEE>'s Start() and Stop() methods, like so:
<marquee id="ticker" onMouseOver="ticker.Stop();" onMouseOut="ticker.Start();">
....some generic content...
</marquee>
However, when I try and plug this into my custom control, I get a JavaScript error that says "Object doesn't support this property or method." Is this an example of a need for me to attach and/or handle an event, even though OnMouseOver nd OnMouseOut are inherent (or so I thought)?
Thanks!
I've got a composite custom contyrol I built that displays data in a normal <MARQUEE> tag. I'm trying to pause the scrolling of the tag's text by using the <MARQUEE>'s Start() and Stop() methods, like so:
<marquee id="ticker" onMouseOver="ticker.Stop();" onMouseOut="ticker.Start();">
....some generic content...
</marquee>
However, when I try and plug this into my custom control, I get a JavaScript error that says "Object doesn't support this property or method." Is this an example of a need for me to attach and/or handle an event, even though OnMouseOver nd OnMouseOut are inherent (or so I thought)?
Thanks!