I have seen some articles about accessing the data inside the iframe,So i have in the page that is loading in the iframe a table like this: <table class="table">...</table>
so all i want to be displayed in that iframe is this table, without any headers or other divs or anything
How can i do this with jQuery ?
UPDATE:
the html code looks like this: i added the table inside a <div>
<div id="test">
<br>
<table class="table">
<thead>
<tr>
<th> ...... // and so on
SO, all i want to be displayed in that iframe is this div
UPDATE for Adil:
$(window).load(function () {
var filteredContents = $('.test').contents().find('.div_iframe').html();
$('.test').contents().find('body').html(filteredContents);
});
HTML looks like this:
<iframe class="test" width="100%" height="100%" src="/message.html?msjId=268" style="height:100%;width:100%;">
<iframe class="test" width="100%" height="100%" src="/message.html?msjId=260" style="height:100%;width:100%;">
and the tables that should be displayed now, they should be two different tables, but at the moment is the same table for both msjId
but duplicated from the first msjId
...