i have on a list a button that fire this event:
js:
$(this).parents('tr')
.find('.class')
.append("<input type='text' size='5'/>");
its possible to make this append happen just in the first time?
like a return false, dont know.
Thanks!
Assuming that this behavior is happening on a
clickevent, you can use one. E.g.,Edit: using
delegate: