I'm starting to learn JQuery.
Right now I want to take the value from my paragraph and give it +1 everytime I click on it. This is what I've tried:
<body>
<p>0</p>
<script>
$("p").click(function(){
// code...
});
</script>
</body>
This is my script