I am trying to do something when I click on the div or class "c" but it seems that it does not work. any suggestion how I can fix it?
<html>
<head>
<title>My seconf jQuery practice</title>
<style>
.c {
width: 100px;
height:100px;
border-radius: 50px;
background-color: red;
}
</style>
</head>
<body>
<div class="c"></div>
<p>My text
<script "type=text/javascript" src="jquery-min.js">
$(".c").click(function() {
//$("p").html("my text has changed");
alert('hi');
});
</script>
</body>
</html>