How do you bind jQuery functions to dynamically created controls in C# code-behind -
if dynamically create control in code-behind, how bind jquery stuff control?
ie (this doesnt work, obviously) mycontrol.extend(".animate()");
thanks!
* let me clarify --- want bind these properties control code behind...
if webforms, controls expose dynamically created id .clientid. using that, have this...
var emailid = '#<%= emailinput.clientid %>'; $(function() { $(emailid) // ... });
Comments
Post a Comment