Chrome and Firefox don't visually update svg after adding an element with jQuery :
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="../js/jquery-3.2.1.min.js"></script>
</head>
<body>
<svg width="300" height="300" viewBox="0 0 300 300" >
</svg>
<script>
jQuery('<circle/>', {
r: "25",
cx: "80",
cy: "80"
}).appendTo('svg');
</script>
</body>
</html>
Element is visible and editable in devTools but it appears only after inserting a space in the tag.
What do I miss ?