d3 browser test.iom | 25K |
script
tag in your markup.script
tag is placed outside of head
or body
so your file looks as follows:<html>
<head> (...) </head>
<body> (...) </body>
<script> (...) </script>
</html>
<html>
<head> (...) </head>
<body>
(...)
<script> (...) </script>
</body>
</html>
script
tag to be inside of body
in the first chart fixes the issue.body
and head
tags inside of html
tag in content view and we remove any other text between html
tags. That is why it works in desktop version, as well as when you render your markup separately (since it is a valid markup), but not in Mobile. It looks like you're new here. If you want to get involved, click one of these buttons!