To perform an AJAX request with jQuery, use the `$.ajax()` method. For example:`$.ajax({ url: 'data.json', method: 'GET', success: function(data) { console.log(data); } });` sends a GET request to 'data.json' and logs the response data. The `$.ajax()` method provides a lot of options for customizing the request.