Do I need to unbind jquery event before remove element?
Hey I know this is an old question but I believe the accepted answer is misleading. Although it’s correct to say that you will need to unbind events on raw JS to avoid memory leaks on old browsers (ehem IE), calling remove() or empty() will already do that for you. So your current call to … Read more