Click triggers onmouseover? (maybe)
Posted: Thu Mar 19, 2009 9:57 am
I have a table with a row and a cell that has onmouseover, onmouseup, onmouseout events assigned.
When I click on the row (and release) to trigger the onmouseup event the onmouseover event is triggered.
I'm using prototype framework and creating the rows like this:
Any ideas or known issues here will be appreciated. I found something about the 3 events not working well together in prototype but nothing about specific issues that might have helped me to figure out whats going on.
When I click on the row (and release) to trigger the onmouseup event the onmouseover event is triggered.
I'm using prototype framework and creating the rows like this:
Code: Select all
row = new Element('tr', {onmouseup: 'function()', onmouseover: 'anotherFunction()', onmouseout: 'aThirdFunction()'});