JSFiddle - React, Tailwind, and code Playground
by Arvind Pal
HTML
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://images.wikia.com/totaldramacomeback/images/7/7c/Raccoon.png"></script>
<body>
<div id="div1"></div>
</body>
JavaScript
var width = 800,
height = 800;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var g = svg.append("g");
var img = g.append("svg:image")
.attr("xlink:href", " asdas")
.attr("width", 200)
.attr("height", 200)
.attr("x", 228)
.attr("y",53);