View Single Post
Old 10-04-2012, 09:03 PM   PM User | #2
DanInMa
Senior Coder

 
DanInMa's Avatar
 
Join Date: Nov 2010
Location: Salem,Ma
Posts: 1,307
Thanks: 12
Thanked 204 Times in 204 Posts
DanInMa is on a distinguished road
You can chain them, like so. I think this is what you are looking for

Code:
$('a.glossaryLink').mouseover(function(event){
onRollOverPULink(event, 'Life')
}).onmouseout(function(event){
onRollOutPULink(event)
}).click(function(event){
defineTerm(event)
})
__________________
- Firebug is a web developers best friend! - Learn it, Love it, use it!
- Validate your code! - JQ/JS troubleshooting
- Using jQuery with Other Libraries - Jslint for Jquery/other JS library users
DanInMa is offline   Reply With Quote