Why doesn't the color of the background change of the paragraph? I've tried using different methods that work, but this one is bothering me...
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$('#aod').click(function(){
$('#para').css('background-color': 'red');
});
</script>
</head>
<body>
<p id="para"> Obrigado </p>
<a href="#" id="aod">Click on this paragraph.</a>
</body>
</html>