Is it possible to use <iframe>
within <form>
?
I am making a code where I pass id
on <div>
and within <form>
with another id
, so within <form>
I want to call a <iframe>
where my content is. p>
Short code:
<tr>
<td height="300" width="" class="tb-conteudo" colspan="4" align="left" valign="top" >
<div id="div_usua" class="conteudo" style="display: none; padding-top:5px;">
<form id="form_usua">
<table align="left" border="0" width="2%">
<tr>
<td>
<iframe style="border-radius:20px;" scrolling="no" src="../sai_cada_usua/menu_com_abas_usua.php" width="900" height="400" >
</iframe>
</td>
</tr>
</form>
</table>
</div>
</td>
</tr>
Full Code: JSF