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
Javascript
var iframe = document.getElementById("iframe");
var div = document.getElementById("PlaceToPutTable");
div.innerHTML = iframe.contentWindow.document.getElementById("KnowDivName").innerHTML;
Hope this helps.