I want to hide this warning div using javascript inside it.
I\'m i getting the javascript right? I want to hide/close the div when i click on the close icon (images/
just add onclick handler for anchor tag
onclick="this.parentNode.style.display = 'none'"
or change onclick handler for img tag
onclick="this.parentNode.parentNode.style.display = 'none'"