function supportsSvg() { var supportsSVG = false; try{ var svg = document.createElementNS("http://www.w3.org/2000/svg",'svg'); supportsSVG = typeof svg.createSVGPoint == 'function'; }catch(e){} return supportsSVG;}