I've tried but unfortunately on iPhone 5s still there is no color but on PC is perfect.
I've tried to change the fill color and height of rectangle in SVG which is in <object>. This is the solution.
I hope that it would be helpful for somebody in the future
I've tried to change the fill color and height of rectangle in SVG which is in <object>. This is the solution.
Code:
$(function(){
$('object').load(function() {
var svg = $('object')[0]; // Choosing svg
var svgDoc = svg.contentDocument; // Choosing content from svg
var svgItem = svgDoc.getElementById("rect4136"); // Choosing rectangle from content
svgItem.setAttribute('height', '50'); // Changing attributes e.g. height
svgItem.style.fill='black'; // Changing style e.g. fill color
});
});
I hope that it would be helpful for somebody in the future