I want to select the div nameMachine using this.but I can't find how to select it:

I can get this element with this code :
$(".switch").each(function(){
console.log(this);
$(this).css({
'background-color': 'white',
'border-style': 'solid',
'border-color': 'inherit',
'border-width': '3px',
});
});