Rune rockets on ranking

Holger Rune has rocketed on the world rankings, now at 28, after the success at Roland Garros. After the quarter-finals in Paris, he climbs 12 places in the world rankings and now has his best ranking in his career. The 19-year-old, who became the first Danish man to advance to the last eight at a […]

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