Is it possible to add a td / div / table / iframe
within a function?
For example:
function Retorno(){
<td height="#" width="#" >
<div id="#" width="#">
<table width="#">
<tr>
<td >
<iframe style="#" src="#" width="#" height="#" >
</iframe>
</td>
</tr>
</table>
</div>
</td>
}
To summarize, I'd like it to be like:
function Retorno(){
window.self.location.href ="#";
}
Only by determining size, shape, etc.