I have something like this
<table>
<cfoutput query="query1">
<tr>
<td>#data#</td>
</tr>
<tr>
<td>
<iframe src="http://www.facebook.com/plugins/like.php?href=#shorturl#"
scrolling="no" frameborder="0"
style="border:none;width:280px; height:25px;" >
<iframe>
</td>
</tr>
<tr>
<td>#data2#</td>
</tr>
<cfoutput>
</table>
I do not know what the problem is, but no other content loads after the iframe tag. #data2# nor any other new row does not load. Any ideas?
You have two opening
<iframe><iframe>tags instead of an opening and a closing tag:<iframe></iframe>. That could be the problem.