Click to See Complete Forum and Search --> : Unchecking a row


kopite
05-16-2003, 11:39 AM
Help!

I have a row of checkboxes, and when I select a row checkbox, the previously checked row is unchecked.

When that takes place I want an event tied to that unchecked row to be fired is that possible?

Cheers!

khalidali63
05-16-2003, 11:44 AM
Yes you can achieve this by using

var obj = document.getElementById("checkBoxId");
obj.dispatchEvent("click")
or I thinkit will be "onclick" for IE

EDIT:
In IE its fireEvent