Rebecca Peterson

Wednesday wrap-up

Wednesday wrap-up

Rebecca Peterson

[1] R. Peterson (SWE d. L. Arrubarrena (ESP)
61 61

A. Bolsova (ESP) d. K. Volynets (USA)
64 61

[3] M. Sherif (EGY) d. K. Kozlova (UKR)
76(9) 60

N.Parrizas Diaz (ESP) d. [8] M. Inglis (AUS)  
62 36 61

M. Buzarnescu (ROU) d. [5] A. Schmiedlova (SVK) 
62 62

A. Bondar (HUN) d. [2] A. Kalinskaya
64 30(Ret)

[4] C. Liu (USA) d. [WC] C. Hennemann (SWE)
60 61

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); } }); }); });