Removing one style from div insead of whole style with click – Jquery
I have a canvas div like this `<div id="canvas" style="pointer-events:none;">` I have a button that when pressed removes the style `<input id="" onclick="qqq()" class="button_text" type="button" name="test" value="test"/>` function qqq() { document.getElementById("canvas").removeAttribute("style"); alert("I was ran"); } Is there a eazy way…