Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 989931
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T05:52:09+00:00 2026-05-16T05:52:09+00:00

I want to create inline SVG graphics using Javascript. However, it seems like createElementNS

  • 0

I want to create inline SVG graphics using Javascript.

However, it seems like createElementNS function applies some normalization and transforms all tags to lowercase. That is fine for HTML but not for XML/SVG. The NS I used is http://www.w3.org/2000/svg.

In particular I have problems creating a element. As it will be appended as <textpath> and thus will not work.

I did some search but could not find a solution yet.

Does anybody know a solution?

document.createElementNS("http://www.w3.org/2000/svg","textPath");

results in

<textpath></textpath>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T05:52:10+00:00Added an answer on May 16, 2026 at 5:52 am

    I hope, the following example will help you:

    function CreateSVG() {
        var xmlns = "http://www.w3.org/2000/svg";
        var boxWidth = 300;
        var boxHeight = 300;
    
        var svgElem = document.createElementNS(xmlns, "svg");
        svgElem.setAttributeNS(null, "viewBox", "0 0 " + boxWidth + " " + boxHeight);
        svgElem.setAttributeNS(null, "width", boxWidth);
        svgElem.setAttributeNS(null, "height", boxHeight);
        svgElem.style.display = "block";
    
        var g = document.createElementNS(xmlns, "g");
        svgElem.appendChild(g);
        g.setAttributeNS(null, 'transform', 'matrix(1,0,0,-1,0,300)');
    
        // draw linear gradient
        var defs = document.createElementNS(xmlns, "defs");
        var grad = document.createElementNS(xmlns, "linearGradient");
        grad.setAttributeNS(null, "id", "gradient");
        grad.setAttributeNS(null, "x1", "0%");
        grad.setAttributeNS(null, "x2", "0%");
        grad.setAttributeNS(null, "y1", "100%");
        grad.setAttributeNS(null, "y2", "0%");
        var stopTop = document.createElementNS(xmlns, "stop");
        stopTop.setAttributeNS(null, "offset", "0%");
        stopTop.setAttributeNS(null, "stop-color", "#ff0000");
        grad.appendChild(stopTop);
        var stopBottom = document.createElementNS(xmlns, "stop");
        stopBottom.setAttributeNS(null, "offset", "100%");
        stopBottom.setAttributeNS(null, "stop-color", "#0000ff");
        grad.appendChild(stopBottom);
        defs.appendChild(grad);
        g.appendChild(defs);
    
        // draw borders
        var coords = "M 0, 0";
        coords += " l 0, 300";
        coords += " l 300, 0";
        coords += " l 0, -300";
        coords += " l -300, 0";
    
        var path = document.createElementNS(xmlns, "path");
        path.setAttributeNS(null, 'stroke', "#000000");
        path.setAttributeNS(null, 'stroke-width', 10);
        path.setAttributeNS(null, 'stroke-linejoin', "round");
        path.setAttributeNS(null, 'd', coords);
        path.setAttributeNS(null, 'fill', "url(#gradient)");
        path.setAttributeNS(null, 'opacity', 1.0);
        g.appendChild(path);
    
        var svgContainer = document.getElementById("svgContainer");
        svgContainer.appendChild(svgElem);
    }
    #svgContainer {
      width: 400px;
      height: 400px;
      background-color: #a0a0a0;
    }
    <body onload="CreateSVG()">
        <div id="svgContainer"></div>
    </body>
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create an inline-block that will take on some unknown width and
For an inline function one could create a constraint like: let inline implicit arg
I want to create a simple integer range checker and converter using c++ templates.
I want to create a fixed layout that displays some images. for example, a
This is a simple question. I want to create an inline calendar that does
I want to create buttons like these: In modern browsers the effect is created
I want to use boost::bind to create a boost::function inserting a new key-value pair
I want to get a reference for chrome.contextMenus.create title property in onClick function. For
I'm using Django and have a form with two additional inline formsets. I want
In WPF I would like to create custom Inline implementation. From documentation of Inline

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.