Hola,
Prueba así:
Código Javascript
:
Ver original$(document).ready(function(){
$('div').each(function(index) {
var style = $(this).attr('style');
if(style == 'border: thin dashed #e6e5e6'){
$(this).hide();
}
});
});
También podrías intentar algo así:
Código Javascript
:
Ver original$('div[style="border: thin dashed #e6e5e6"]').hide();
Revisa los diferentes
selectores.
Saludos!