HI, i posted a similar question a few days ago and i got my answer. but i actually found a shorter way. here are teh two events i wanted to combine:
Code:
onMouseOver="imgover(pic1)"
onMouseover="changetext(content[0])"
instead of going through my documents and practically rewriting it all, heres how i fixed it:
Code:
onMouseOver="imgover(pic1), changetext(content[0])"
at first i tried doing this:
Code:
onMouseOver="imgover(pic1)","changetext(content[0])"
adn this also:
Code:
onMouseOver="imgover(pic1)";"changetext(content[0])"
i hope this short method works for you like it did for me.
Bookmarks