<table>
<tr>
<td class="temp" onclick="removeBGColor();">
fdgdfgdfgdfgdf
</td>
</tr>
</table>
<style type="text/css">
.temp {
background-color: red;
}
</style>
<script language="javascript">
function removeBGColor() {
$(".temp").css("background-color", "" );
}
</script>
it will not remove the red color from the . what is the solution for this? Thank You