Upon reviewing this article, I have come to understand that when using updatepanel for postback, the javascript bindings are lost.
The issue I am facing is that my javascript code resides in a file called jscolor.js. The connection between my asp page and the script seems fine:
<script src="../../assets/js/jscolor.js"></script>
The class name of my textbox is "jscolor" as per the demo on the website
<asp:TextBox Class="jscolor" ID="Couleur_1" runat="server"></asp:TextBox>
After a postback, I need to rebind my script, but most demonstrations I've seen involve click functions rather than this situation.
For reference, the jscolor script starts like this:
if (!window.jscolor) { window.jscolor = (function () { ...
Thank you in advance, J-E