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

Popular posts from this blog

jquery - Invalid Assignment Left-Hand Side -

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -