Event handling in jQuery is done using methods like `.click()`,`.mouseover()`,`.keydown()`, etc. For example, to handle a click event on a button with the id 'myButton', you would write `$('#myButton').click(function() { alert('Button clicked!'); });`. This binds a click event to the button that triggers an alert.