2
It is possible to use a <iframe>
within a <form>
?
I’m making a code where I step one id
in <div>
and within a <form>
with another id
, thus within the <form>
want to call a <iframe>
where is my content.
Shortcode:
<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>
Complete code : JSF
thanks, took out the doubt I had in mind!
– Felipe