Entonces para esto tendrias que usar algo como esto
Código Javascript
:
Ver original$(document).ready(function(){
$('div').each(function(index) {
var style = $(this).attr('style');
if(style == 'border: thin dashed #e6e5e6'){
// ACA TU CODIGO
}
});
});