Comment créer un élément SVG avec JavaScript ? J'ai essayé ceci :
var svg = document.createElement('SVG');
svg.setAttribute('style', 'border: 1px solid black');
svg.setAttribute('width', '600');
svg.setAttribute('height', '250');
svg.setAttribute('version', '1.1');
svg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
document.body.appendChild(svg);
Cependant, il crée un élément SVG avec une largeur et une hauteur nulles.