I am trying to trigger a keyup function to an appended elements, but all elements with the same Class are receiving the event.
this.ul.append('<li><div class="suggest_tag addSectionTag"><span class="LabelInput"><input type="text" class=""><span class="LabelInput_Label">Adiciona um título...</span></span></div></li>').hide()
this is my simples code. This will hide all LI elements inside the this.ul = $(‘#testing ul’) selector. I just want it to hide the appended element.
Any clue?
Assume you’re using jquery: