Cannot read property "getContext" of null??arc() problem | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Cannot read property "getContext" of null??arc() problem

<canvas id="canvas1" width="578" height="200"></canvas> function circle() { var canvas = document.getElementById("canvas1"); var context = canvas.getContext("2d"); context.beginPath(); context.lineWidth="2"; context.arc(100, 100, 90, 0, 2 * Math.PI); context.stroke(); } circle(); I tried to run this programme,but it just keeps showing cannot read property "getContext" of null.Whats's wrong?

28th Feb 2017, 9:12 AM
Foxtrot Pipe
Foxtrot Pipe - avatar
1 Answer
+ 11
Your Javascript needs to be between the <script> element. If it's located in an external file then you need to link it to your HTML. That's not going to work like that, unless you knew this for the purpose of explaining to us. Within your Javascript add the onload event: window.onload = function (){ // add all code here so the browser knows what to detect after loading. }
28th Feb 2017, 8:10 PM
Mark Foxx
Mark Foxx - avatar