jQuery(document).ready(function($) {
$('select[name="Season"], select[name="Competition"]').change(function() {
var season = $('select[name="Season"]').val();
var competition = $('select[name="Competition"]').val();
$.ajax({
url: ajaxurl,
type: 'POST',
data: {
action: 'fetch_competition_data',
season: season,
competition: competition,
},
success: function(response) {
$('#results-container').html(response);
},
error: function() {
alert('There was an error processing your request.');
}
});
});
});