Hallo var,
var tableRow = document.getElementById( 'tableRow' );
tableRow.addEventListener( 'click', function ( ) {
if ( tableRow.style.backgroundColor = 'blue' ) {
tableRow.style.backgroundColor = 'green';
}
if ( tableRow.style.backgroundColor = 'green' ) {
tableRow.style.backgroundColor = 'blue';
}
} );
>
zusätzlich zum "==" im if würde ich vor das zweite if noch ein else setzen.
Gruß, Jürgen