Skip to content
Advertisement

Uncaught TypeError: Cannot read property ‘style’ of null in function

I have seen many questions about this error but, I haven’t found the answer on any of them.

I’m creating an interactive page to create patterns based on geometric shapes and I’m having problems adding a new element with a function that creates a new element and adds the element to a “base” div. Then, the base div is cloned to create the pattern.

In the HTML I’ve created a color picker to preselect the color before creating the element, and a button that contains a function to create and append the new element to the base div.

Also in the HTML, I created the SVG shapes with a “display:none” style, and when I retrieve them with JS, I just change it to “display:block”.

I can append many elements with javascript instructions (there are some examples in the code), but when I put these instructions inside a function, the code doesn’t work and I got the error: “Uncaught TypeError: Cannot read property ‘style’ of null”

This is my code, I included comments for easier reading. Hope you can help me.

JavaScript
JavaScript
JavaScript

Advertisement

Answer

The error appears when you click the Create button second time.

The function create_Lslash() calls myDiv.appendChild(innerDiv). As innerDiv here is an existing element svg#slash_left, it is moved from it’s current position to new position (child of myDiv). But you don’t append myDiv back to the html document after this.

Hence, svg#slash_left is not found in the document when you click Create again and var innerDiv = document.getElementById("slash_left"); evaluates to null.

Ref: Node.appendChild

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement