Perguntas com a marcação «jquery»

95
jQuery append () vs appendChild ()

Aqui está um exemplo de código: function addTextNode(){ var newtext = document.createTextNode(" Some text added dynamically. "); var para = document.getElementById("p1"); para.appendChild(newtext); $("#p1").append("HI"); } <div style="border: 1px solid red"> <p id="p1">First line...

95
jQuery select2 obtém o valor da tag select?

Olá amigos, este é o meu código: <select id='first'> <option value='1'> First </option> <option value='2'> Second </option> <option value='3'> Three </option> </select> Este é o meu código select2: $("#first").select2(); Abaixo está o código...

94
jQuery - Adicionar ID em vez de Classe

Estou usando o jQuery atual : $(function() { $('span .breadcrumb').each(function(){ $('#nav').addClass($(this).text()); $('#container').addClass($(this).text()); $('.stretch_footer').addClass($(this).text()) $('#footer').addClass($(this).text()); }); }); Ele aplica o texto contido na...

94
serializar formulário jQuery - string vazia

Meu html: <script type="text/javascript"> $(function() { $("#bt1").click(function() { var f = $("#form1"); var formData = f.serialize(); alert(formData); }); }); </script> <div id="div1"> <form id="form1" action="/Home/Test1" method="post" name="down">...