1
2
3
4
|
$( "input[style]" ).each( function (){
$( this ).css( "border-width" , "1" );
$( this ).css( "background-color" , "#A9A9A9" );
});
|