$('#id').remove() doesn't work in jquery
To sort this out, first look at the page's source htnl code,
check whether the id is specified correctly and whether it is unique
there's a chance that several elements on the page have the same id
fix that problem.
Once you remove the elements with duplicate ids, this problem should be solved
Comments