[thelist] JavaScript Multiple Events

Jeff Chester jeffc33 at gmail.com
Thu Jul 5 06:54:27 CDT 2007


On 7/4/07, Bruce Gilbert <webguync at gmail.com> wrote:
> Hello,
>
> I am accustomed to coding rollover events in JS, but this time I am also
> looking to have a second event occur when you mouseover and that is to have
> text appear in another location eg: in a separate table or  div. Can someone
> assist me as to how this is done?
>
> thanks
>
> --
> ::Bruce::
> --
>
> * * Please support the community that supports you.  * *
> http://evolt.org/help_support_evolt/
>
> For unsubscribe and other options, including the Tip Harvester
> and archives of thelist go to: http://lists.evolt.org
> Workers of the Web, evolt !
>

Bruce,

You can call more than one function from a single event.  Just
separate them with a semicolon.

<a href="" onmouseover="alert('one');alert('2');">this is a test</a>


jeff



More information about the thelist mailing list