Please see the following code:
Search<
in order to prevent the form from posting, so that you can see your changes, you need to call preventDefault()
$('#helloButton').click(function (e) { e.preventDefault(); $('#hello').html('hello world'); });