Standings
us.season.soccer.standings provides detailed standings info for a given season.
By default, the widget provides the Major League Soccer active season standings.
Parameters
Name | Type | Description | ||||
---|---|---|---|---|---|---|
props | object | properties | ||||
Name | Type | Argument | Default | Description | ||
seasonId | number | optional | Season ID. Takes precedence over uniqueTournamentId . | |||
uniqueTournamentId | number | optional | 242 | Unique tournament ID. Valid options are: 242 - MLS, 17 - Premier League,35 - Bundesliga,23 - Serie A,8 - La Liga,33 - Ligue 1,7 - Champions League. | ||
type | string | optional | 'overall' | Displays standings as overall or home/away. Possible options: overall , home , away . | ||
mode | string | optional | 'conference' | Separates the teams into groups. Possible options: league or conference . Applicable for MLS only. | ||
border | boolean | optional | If true enables a border around the widget. | |||
showSeasonSelector | boolean | optional | 'true' | If false the season dropdown is hidden. | ||
disableDropdown | boolean | optional | If true hides the tournament dropdown. | |||
onItemClick | function | optional | Function/event handler. Emits uniqueTeamId on click or touch. |
Examples
<div class="sr-widget" data-sr-widget="us.season.soccer.standings" data-sr-season-id="62475" ></div>
<script type="application/javascript" src="https://widgets.media.sportradar.com/YOUR_CLIENT_ALIAS/widgetloader" data-sr-language="en_us" async></script>
<script>
(function(a,b,c,d,e,f,g,h,i){a[e]||(i=a[e]=function(){(a[e].q=a[e].q||[]).push(arguments)},i.l=1*new Date,i.o=f,
g=b.createElement(c),h=b.getElementsByTagName(c)[0],g.async=1,g.src=d,g.setAttribute("n",e),h.parentNode.insertBefore(g,h)
)})(window,document,"script","https://widgets.media.sportradar.com/YOUR_CLIENT_ALIAS/widgetloader","SIR", {
language: 'en_us'
});
SIR('addWidget', '#sr-widget', 'us.season.soccer.standings', {uniqueTournamentId: 8});
</script>
<div id="sr-widget"></div>
<script>
(function(a,b,c,d,e,f,g,h,i){a[e]||(i=a[e]=function(){(a[e].q=a[e].q||[]).push(arguments)},i.l=1*new Date,i.o=f,
g=b.createElement(c),h=b.getElementsByTagName(c)[0],g.async=1,g.src=d,g.setAttribute("n",e),h.parentNode.insertBefore(g,h)
)})(window,document,"script","https://widgets.media.sportradar.com/YOUR_CLIENT_ALIAS/widgetloader","SIR", {
language: 'en_us'
});
SIR('addWidget', '#sr-widget', 'us.season.soccer.standings', {seasonId: 50277, type: 'away', mode: 'league', onItemClick: function(type, obj){alert('uniqueTeamId: ' + obj.uniqueTeamId);}});
</script>
<div id="sr-widget"></div>
Updated 3 days ago