Apologies if I have created new thread for this, but I didn't get a solution elsewhere.
I am newbie to web designing and I was playing around with the <iframe>
tag.
I used javascript to display a graphical chart from Google Sheets
. Every time I click on the link which opens the chart (connected by iframe
), the chart gets displayed once again below the previous chart and my HTML
page gets elongated. I don't want that to happen. Instead, I would like to replace the old chart with the new chart in the same margins of previous generated charts.
<script>
function myFunction() {
var x = document.createElement("IFRAME");
x.setAttribute("src", "#Link_to_Google_sheet_chart");
x.height = "400";
x.width = "545";
x.style.margin = "100px 20px 200px 450px";
document.body.appendChild(x);
}
</script>