<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'>
function colorChanger(el){
el.style.backgroundColor = '#007d00';
}
</script>
</head>
<body>
<table>
<tr>
<td onclick="colorChanger(this);">click me</td>
</tr>
</table>
</body>
</html>