Is it possible to remove or hide the svg element using css or jquery. I know how to βeditβ a div element using css. Something like that:
div[style="position: absolute; cursor: pointer; width: 207px; height: 95px; left: 513px; top: 0px; -webkit-transform-origin: 100% 0%;"] { display: none !important; }
and I'm curious if something like this is possible with svg. Sample code for svg
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 207 95" xml:space="preserve" height="95px" viewBox="0 0 207 95" width="207px" version="1.1" y="0px" x="0px">
thanks
javascript jquery html css svg
Rhck
source share