JJohnsenDK Posted December 30, 2007 Share Posted December 30, 2007 Is it possible to do more than one onmouseover, so when i point my mouse at a link two things happens? Link to comment https://forums.phpfreaks.com/topic/83767-solved-more-than-one-onmouseover/ Share on other sites More sharing options...
phpQuestioner Posted December 30, 2007 Share Posted December 30, 2007 yes it is possible - add both events in one function: <script language="javascript"> function getMOE() { // event 1 here // event 2 here } </script> <a href="http://www.google.com" onmouseover="getMOE()">Mouse Over Here</a> Link to comment https://forums.phpfreaks.com/topic/83767-solved-more-than-one-onmouseover/#findComment-426201 Share on other sites More sharing options...
JJohnsenDK Posted December 30, 2007 Author Share Posted December 30, 2007 aah yes... nice... thank you Link to comment https://forums.phpfreaks.com/topic/83767-solved-more-than-one-onmouseover/#findComment-426220 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.