I am unable to delete a div with an id with a period or an asterix.
In pure javascript, you can use :
var tmp = document.getElementById('xyz'); tmp.parentNode.removeChild(tmp);