I want to embed just this part on my website. How do I do that? I have tried with iframe and it shows me the whole page I just want the table!
If you do know the id of the div the table is in you can do something like this
HTML
<div id="PlaceToPutTable"></div>
<iframe id="iframe" src="urlofpagewithtableonit.html" style="display:hidden;"></iframe>
Javascript
var iframe = document.getElementById("iframe");
var div = document.getElementById("PlaceToPutTable");
div.innerHTML = iframe.contentWindow.document.getElementById("KnowDivName").innerHTML;
Hope this helps.
You can put the part of an external website starting at some id into an iframe, like this. Or you can put an iframe into a div like this.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With