i create custom multiple span element and bind with with click event. i want to dynamically remove the span on click. i can just remove the span with remove() function. for good practice, should i call unbind on the span first before call remove() ? please advice
Share
According to jQuery, calling
removewill automatically unbind the click event. So you should be okay.