-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SVG support #27
Comments
Related #23 |
I ran into this issue with inline svg xml not working within an iframe and was able to resolve the issue by setting the innerHTML to itself. VanillaJS var iframe = document.querySelector("iframe");
var frame_body = iframe.contentDocument.body;
frame_body.innerHTML = frame_body.innerHTML; Jquery var $frame = $("iframe");
var $frame_body = $frame_body = $($frame[0].contentDocument.body);
$frame_body.html($frame_body.html()) |
For those who are coming to this question later, if you're using the What you'll find in the
What you'll need to do is create a similar override for SVG and its elements. Here is what I did:
|
Great project. I love what you've done. I've played with it through Live Helper.https://livehelperchat.com/ and the co-browsing feature they have. At the moment it doesn't seem to support SVGs.
I have a site that requires the use of SVG and this project doesn't seem to send through that data. Is there any reason that SVG support is left out?
The text was updated successfully, but these errors were encountered: