Hello!
I have an SVG file with some math equations. Lets say I include this file into my html document. Now what I'd like to do is to make some simple modifications to the contents of the svg using javascript in the html document.
A specific example
My svg file contains a nicely formatted version of this equation:
x^2 + 2x + 1 = 0
and I'd like to make the following changes:
- Color the x^2 red
- Remove 2x from the equation
Thanks.