27/01/2011, 06:56
|
| | Fecha de Ingreso: diciembre-2009 Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 11 meses Puntos: 65 | |
Respuesta: Agrupar etiquetas CSS en Jquery http://api.jquery.com/not-selector/ http://api.jquery.com/has-selector/
Código HTML:
Ver original <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> $(function(){ $('div:not(:has(ul))').hover( function(){ $(this).css('background', 'red'); }, function(){ $(this).css('background', 'blue'); }); }); div con ul
|