Hello, I have a basic template html form and want to use it in animate edge, so:
<form id="form1" name="form1" action="http://www.anywere.com.br/GSLog/LoginExterno.aspx?emp=137975"; method="post">
<input type="text" id="txtLogin" name="txtLogin" size="20" placeholder="Login" style="height:20px; border: 1px solid #FFF; margin-bottom:5px;" />
<input type="password" id="txtSenha" name="txtSenha" size="20" placeholder="Senha" style="height:20px; border: 1px solid #FFF;" />
<input type="image" src="imagens/bt_entrar.jpg" name="button" id="button" style="margin: 5px 0 0 85px;" />
</form>
good, I created a parent item, as the name form and two sons with the names operand1 and 2, plus a button to send then did the tigger syntax like this:
sym.$("form").html('<form id="form1" name="form1" action="http://www.gslogweb.com.br/GSLog/LoginExterno.aspx?emp=137975"; method="post" />');
sym.$("operand1").html("<input type='text' name='txtLogin' id = 'txtLogin' style = 'width:115px; height: 10px;font-size:9px; background:transparent; border-color:transparent'></input>");
sym.$("operand2").html("<input type='password' name='txtSenha' id = 'txtSenha' style = 'width:115px; height: 10px;font-size:9px; background:transparent; border-color:transparent'></input>");
sym.$("submit").html("<input type="image" src="imagens/bt_entrar.jpg" name="button" id="button" style="margin: 5px 0 0 85px;" />");
unfortunately nothing is going right, anyone out there has tried it?
Dear friends, help me please.