In glorious sunshine, the tennis party was inaugurated together with Elite Hotels Next Generation and the Swedish Tennis Association. Full stands and entertainment by Pidde P and Theoz framed the summer evening and while the future of Swedish tennis plays finals on Monday at Drivan Tennis Centre, the Nordea Open WTA begins at the Båstad Tennis Stadium.

Mondays Order of play

jQuery(document).ready(function($) { $('.match-container').each(function() { let matchId = $(this).data('match-id'); $.ajax({ url: ajaxurl, // Använd den globala variabeln ajaxurl type: 'POST', data: { action: 'get_match_data', match_number: matchId }, success: function(response) { if (response.success) { $(this).html(response.data.content); } else { console.error('Fel vid hämtning av matchdata:', response); } }.bind(this), // Bindar 'this' för att hänvisa till rätt element error: function(error) { console.error('AJAX-fel:', error); } }); }); });