- Inside a gridview (label turn to textbox on click) One at a time
- $('label#elementYouWantThemToClick').click(function(){
- var textbox_HTML = '<textbox></textbox>'
- $(this).parent().html(textbox_HTML) // This will destroy the event listener on your label as well
- });