Skip to content

Instantly share code, notes, and snippets.

@battaglia01
Created December 4, 2023 04:39
Show Gist options
  • Save battaglia01/45c5de6df02a9ac5a99e3610a7499b5a to your computer and use it in GitHub Desktop.
Save battaglia01/45c5de6df02a9ac5a99e3610a7499b5a to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">
<!-- JavaScript code within a <script> tag -->
<script type="application/javascript">
<![CDATA[
// Your JavaScript code here
function showMessage() {
alert('Hello, SVG with Script!');
}
]]>
</script>
<!-- Rectangle with an onclick event calling the JavaScript function -->
<rect x="10" y="10" width="100" height="50" fill="blue" onclick="showMessage()" />
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment