This should do the trick:
$('li a').on('click', function(e) {
e.preventDefault();
$(this).parent().hide();
});
The selector li a finds all <a> tags inside any <li> (I've kept it simple here so it'll be greedy). We then use $.on() to bind an event handler to the click event.
Now we use an anonymous function (a function without a name) to do our stuff in. Here, we pass e into the function as an argument. e contains the event object so we can do e.preventDefault() on the next line. This line stops the browser doing it's default behaviour on the link, which is to navigate to the URL in the href attribute in the <a> tag.
The line $(this).parent().hide() is the important one. Here, $(this) references the link that was clicked, so doing $(this).parent() we can access the parent node (tag) of the <a> which is an <li> in this case. Adding .hide() to the end of it hides the <li> and you're done.
To update your .updateNumber span, add this code to your click handler function:
var currentNumber = parseInt($('.updateNumber').text());
currentNumber++;
$('.updateNumber').text(currentNumber);
The first line gets an integer from the text within your span and assigns it to a variable called currentNumber. parseInt() will attempt to turn whatever is inside the span into an integer.
The second line currentNumber++; takes the current value we got from the span and increments it by one (the ++) bit.
We then want to replace the text displayed in the span with the new, updated value, so we put the new value back into the span by using $.text() again:
$('.updateNumber').text(currentNumber);
Note that using $.text() without passing it a string to use will retrieve the element's text, whereas supplying $.text() with an argument such as "Hello world, I'm a string" will put that string into the target element.
Here is a working demo proudly produced and sponsored by @Reigel from the comments.