add EventListener < span id=”elem”>Hello! < script > elem.addEventListener(‘click’,function(){ alert(‘hello’); }); </ script >

How to style SVG element?

January 18, 2020

<svg id=”svg” viewBox=”0 0 100 100″ xmlns=”http://www.w3.org/2000/svg”> <g id=”g”> <circle cx=”50″ cy=”50″ r=”25″ /> <circle cx=”60″ cy=”60″ r=”25″ /> </g> </svg> <style type=”text/css”> #svg{width: 500px;height:… Read More →

get screen width and height with JavaScript < script >if (screen.width>900||window.innerWidth>900) { }</ script > Get screen width window.innerWidth Get screen height window.innerHeight