En un ejemplo que estoy haciendo para ir aprendiendo jquery, estoy haciendo que primero se muestre un texto, recogido de un input text, para luego ocultarlo. Quiero hacerlo con la misma función, pero no me funciona. NO se en que estoy fallando.
Os paso el código:
Código:
Gracias! <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Sum of all TextBox values using jQuery</title> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(function() { $("#reescribir").click(function() { var texto; texto = $("#texto").val(); $("#parados").show(texto); $("#parados").fadeIn(1000,function(){ $(this).hide(texto); }); }); }); </script> </head> <body> <input type="text" id="texto" /><br /> <input id="reescribir" type="button" value="Sum all Textboxes" /><br /> <p id="para" /> <p id="parados" /> </body> </html>