After reading this post, I understand that when you postback with updatepanel your javascript is not bound anymore.
The problem is that my javascript is on my file jscolor.js. The link between my asp page and the script is OK :
<script src="../../assets/js/jscolor.js"></script>
The classname of my textbox is "jscolor" regardin the demo on the website
<asp:TextBox Class="jscolor" ID="Couleur_1" runat="server"></asp:TextBox>
After a postback i need to re-bind my script, but I see a lot of demonstration with click function, but not with this situation.
For information, the jscolor start like this :
if (!window.jscolor) { window.jscolor = (function () { ...
Thanks in advance, J-E