Working with a canvas element generated by Javascript, see the code snippet below: http://jsfiddle.net/mtvzgnmm/
<div id="circle"></div>
<script>
$('#circle').circleProgress({
value: 0.75,
size: 400,
fill: {
gradient: ["#e57569"]
}
});
</script>
Now, the issue is that the #circle div is contained within another div of 500px width and creating a mobile version is proving difficult as I can't seem to make the canvas element 100% wide...