New wiki-page
Jump to navigation Jump to search
No edit summary
No edit summary
Line 8: Line 8:
</script>
</script>


<input type="text" id="change" oninput="change_cx(this.value);">
<input type="text" id="change" onchange="change_cx(this.value);">

Revision as of 17:27, 9 August 2017

<script>

function change_cx() {

   alert(this.value);
   document.getElementById("marker").setAttribute("cx", this.value);

}

</script>

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