Embed a list of events

If you want to embed a list of all of the events in your RACE RESULT account you can do so by embedding the List of Events source code on your site.

<link rel="stylesheet" type="text/css" href="https://my.raceresult.com/RREvents/style.css">
<div class="EventTable" id="tEventTable">
<div><div>&nbsp;</div><div>&nbsp;</div><div>City</div><div>Event</div><div>Date</div></div>
</div>
<script type="text/javascript" src="https://my.raceresult.com/RREvents/RREvents.js"></script>
<script type="text/javascript">
<!--
	var options= { dateFormat : 'mm/dd/yyyy' };
	var rre=new RREvents(document.getElementById("tEventTable"), null, 'en', options);
	rre.server="https://my.raceresult.com";
	rre.user=11111;
	//rre.year=2017;
	//rre.group=1234;
	//rre.eventlink="http://your.webseite.com/events/show?eventid=[eventid]";
	//rre.openInNewWindow=false;
	rre.loadEvents(function(resultSize) { return true; });
-->
</script>

This source code has several variables that allow you to customize what events are shown.

Any variables that have the // before them are commented out. This means they will not be loaded.