tags:

views:

112

answers:

1

I have written some handlers binding the jQuery .change event to the controls on my page. One of the controls has the ReadOnly=readonly attribute set. The .change event is not firing for just this control.

I have had a Google but can see nothing obvious. Any ideas?

+1  A: 

When a control is readyonly there is no question of changing it or firing a change event.

Sarfraz
OK sorry I should have included the detail that the field is part of an ASP .ascx control and the target, readonly, field is the text box that is updated by the calendar extender control.
The Great Gonzo