Using VS2012 to create a web application in VB, I have the following issue:
I create a asp:CalendarExtender that populates a asp:TextBox. This Textbox has the property Enabled="False" assigned to it. Once the asp:CalendarExtender has been called it will place a date in the TextBox in the format 'Sept 1 2000'.
I now want to use JQuery to detect this change. I have come across many examples which rely on a text change using the keyboard or a Blur, but none of these work. I have even attached a JQuery event to the button that triggers the Calendar to pop-up that removes the 'Enabled=False' property of the asp:TextBox [My train of thought was to remove the enabled property, allow the JQuery to detect a pasted change, then disable the textbox again]
Any ideas or suggestions gratefully received.