Preguntas etiquetadas con jquery

192
jQuery publicando JSON

actualización: me gustaría pasar el var value al servidor hola, lo mismo de siempre ... :) Tengo un formulario llamado <form id="testForm" action="javascript:test()">y un área de código llamada<code id="testArea"></code> Estoy usando este código para stringificar y mostrar los...

192
jQuery en el cambio de tamaño de la ventana

Tengo el siguiente código JQuery: $(document).ready(function () { var $containerHeight = $(window).height(); if ($containerHeight <= 818) { $('.footer').css({ position: 'static', bottom: 'auto', left: 'auto' }); } if ($containerHeight > 819) { $('.footer').css({ position:...

191
Alternar el atributo de entrada deshabilitado con jQuery

Aquí está mi código: $("#product1 :checkbox").click(function(){ $(this) .closest('tr') // Find the parent row. .find(":input[type='text']") // Find text elements in that row. .attr('disabled',false).toggleClass('disabled') // Enable them. .end() // Go back to the row. .siblings() // Get its...

189
Cree una regla / clase CSS con jQuery en tiempo de ejecución

Por lo general, tengo un archivo CSS que tiene la siguiente regla: #my-window { position: fixed; z-index: 102; display:none; top:50%; left:50%; } ¿Cómo puedo evitar crear un archivo CSS estático agregando la información CSS durante las acciones de tiempo de ejecución al cuerpo, o algo...

188
jQuery append () - devuelve elementos agregados

Estoy usando jQuery.append () para agregar algunos elementos dinámicamente. ¿Hay alguna forma de obtener una colección jQuery o una matriz de estos elementos recién insertados? Entonces quiero hacer esto: $("#myDiv").append(newHtml); var newElementsAppended = // answer to the question I'm...