Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/10/2014, 16:40
vmelero
 
Fecha de Ingreso: octubre-2010
Mensajes: 88
Antigüedad: 14 años, 1 mes
Puntos: 1
Respuesta: Recorrer inputs dentro de un div

Por fin he conseguido que me funcione, y lo he solventado de la siguiente manera

Código PHP:
$.each( $(".noticia "), function()
                {
                    
idNoticia =  $(this).find('input[id=idnoticia]').val();
                    var 
mChec= $(this).find('input[type=checkbox]');                            
                    if (
mChec.is(':checked')){
                        
eliminaNoticia(idNoticia);
                        
$marcado=true;
                        }
                            
                 });
                
                 if (
$marcado==false)
                    
alert ("Debe seleccionar previamente alguna noticia para eliminar."); 
                 else
                    
location.reload(); 
Un saludo