New wiki-page
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:


function change_cx() {
function change_cx() {
    document.getElementById("marker").setAttribute("cx", document.getElementById("change").value);
     alert(document.getElementById("change").value);
     alert(document.getElementById("change").value);
}
}

Revision as of 17:31, 9 August 2017

<script>

function change_cx() {

   alert(document.getElementById("change").value);

}

</script>

<input type="text" id="change" onchange="change_cx();">