SVG UseElement.x Property Last Updated : 30 Mar, 2022 Comments Improve Suggest changes Like Article Like Report The SVG UseElement.x property returns an SVGAnimatedLength object corresponding to the attribute of the given use element Syntax: UseElement.x Return value: This property returns SVGAnimatedLength object that can be used to get the x of the use element. Example 1: HTML <!DOCTYPE html> <html> <body> <svg width="400" height="400" xmlns="http://www.w3.org/2000/svg"> <circle id="gfg" cx="100" cy="100" r="40" fill="green"/> <use href="#gfg" x="110" y="200" id="useid"></use> <script type="text/javascript"> var u = document.getElementById("useid"); console.log(u.x); console.log(u.x.animVal.value) </script> </svg> </body> </html> Output: Example 2: HTML <!DOCTYPE html> <html> <body> <svg width="800" height="800" xmlns="http://www.w3.org/2000/svg"> <rect id="gfg" x="100" y="100" height="150" width="150" fill="green"/> <use href="#gfg" x="200" y="200" id="useid"></use> <script type="text/javascript"> var u = document.getElementById("useid"); console.log(u.x); console.log(u.x.animVal.value) </script> </svg> </body> </html> Output: Comment More info T taran910 Follow Improve Article Tags : Web Technologies HTML HTML-SVG SVG-Property Explore HTML BasicsHTML Introduction5 min readHTML Editors5 min readHTML Basics7 min readStructure & ElementsHTML Elements5 min readHTML Attributes8 min readHTML Headings4 min readHTML Paragraphs5 min readHTML Text Formatting4 min readHTML Block and Inline Elements3 min readHTML Charsets4 min readListsHTML Lists5 min readHTML Ordered Lists5 min readHTML Unordered Lists4 min readHTML Description Lists3 min readVisuals & MediaHTML Colors11 min readHTML Links Hyperlinks3 min readHTML Images7 min readHTML Favicon4 min readHTML Video4 min readLayouts & DesignsHTML Tables10 min readHTML Iframes4 min readHTML Layout4 min readHTML File Paths3 min readProjects & Advanced TopicsHTML Forms5 min readHTML5 Semantics6 min readHTML URL Encoding4 min readHTML Responsive Web Design11 min readTop 10 Projects For Beginners To Practice HTML and CSS Skills8 min readTutorial ReferencesHTML Tags - A to Z List15+ min readHTML Attributes Complete Reference8 min readHTML Global Attributes5 min readHTML5 Complete Reference8 min readHTML5 MathML Complete Reference3 min readHTML DOM Complete Reference15+ min readHTML DOM Audio/Video Complete Reference2 min readSVG Element Complete Reference5 min readSVG Attribute Complete Reference8 min readSVG Property Complete Reference7 min readHTML Canvas Complete Reference4 min read Like