I want to get 4 buttons in javascript to change the colour of the square in svg when clicking on them
So far I have the following code
<html>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg width="100%"height="100%"version="1.1"
<svg xmlns="http://www.adobe.com/svg">
<script type="text/ecmascript">
<![CDATA[
function chooseColor1() {
document.getElementsById("mySqaure")[0].style.color = "green";
}
function chooseColor2() {
document.getElementsById("mySqaure")[0].style.color = "pink";
}
function chooseColor3() {
document.getElementsById("mySqaure")[0].style.color = "purple";
}
function chooseColor4() {
document.getElementsById("mySqaure")[0].style.color = "blue";
}
]]>
</script>
`<g
id="firstGroup">
<rect id = "mySquare" x="0" y="0" width="20" height="20" fill="grey" stroke="black" stroke-width="2" />
</g>
<form onsubmit="return false">
<input type="button" value="green" onclick="chooseColor1()"/>
<input type="button" value="pink" onclick="chooseColor2()"/>
<input type="button" value="purple" onclick="chooseColor3()"/>
<input type="button" value="blue" onclick="chooseColor4()"/>
</form>
</svg>
</html>
formandscriptelements are allowed insidesvg. Place them outside. also the rest of you markup is messed up (no body and head element, xml header and doctype inside html? That's all just wrong) Review the basic structure of HTML documents. – Felix Kling Apr 10 '12 at 9:30type="text/ecmascript"is valid... just omit it. – Felix Kling Apr 10 '12 at 10:07xmlns="http://www.adobe.com/svg"). Wouldn't validate as svg. – Erik Dahlström Apr 11 '12 at 8:26