Demo MeetBrooklyn, NY
4/15/2015

< Back

Note: A breadcrumb to return the index appears here when the user has left the home page. The <a> tag has the class .home-link.

Women's Long Jump (Open) Results

The event header is an <h3> element specified with the .event-results-hdr class.
If a custom name was specified for the event, it will be displayed. Otherwise the header will be formatted as [Gender] [Distance] ([Division {if specified}]) [Report Name]

Event headers are classed by report, and have the following default styles applied to them:

.event-results-hdr, .entries-hdr, .event-start-list-hdr, .event-performance-list-hdr {
    text-transform:uppercase;
}

Final

PL # Athlete Yr. Team Mark English Attempts Pts
1 122 Oneal, Alison JR Fillmore 17' 2.75" 17' 2.75"
16' 9.75" 16' 6.50" 17' 0.50" 16' 11.75" 16' 6.75" 17' 2.75"
10
2 198 Ochoa, Alex SR Roosevelt 17' 2.50" 17' 2.50"
15' 11.25" 16' 10.75" 16' 3" 15' 10.75" FOUL 17' 2.50"
8
3 22 Nicholson, Elizabeth SR Taylor 16' 10" 16' 10"
15' 11.75" 16' 4.75" 15' 8" 15' 10.75" 16' 10" FOUL
6
4 197 Holman, Ijana JR Taft 15' 8" 15' 8"
13' 10.25" 14' 2" 15' 8" 15' 5.75" 15' 7.50" 15' 0.50"
4
5 196 Mcclain, Steph SR Fillmore 15' 6.50" 15' 6.50"
14' 11.25" 15' 6.50" FOUL 13' 10.50" 14' 7.75" 14' 9.50"
2
6 137 Maynard, Destinee SO Hayes 15' 3.50" 15' 3.50"
14' 11.50" 15' 3.50" 14' 1.75" FOUL PASS PASS
1
7 118 Petty, Liz SO Harding 14' 1.25" 14' 1.25"
13' 3.50" 13' 7.75" FOUL FOUL 14' 1.25" 13' 10.25"
 
8 205 Lowery, Bria JR Hayes 13' 7.75" 13' 7.75"
13' 7.75" PASS PASS PASS PASS PASS
 
9 204 Rosario, Celsey JR Harding 13' 1.50" 13' 1.50"
12' 10.75" 13' 1.50" 12' 9.75"
 
10 2 Mclean, Deidre FR Garfield 12' 11.75" 12' 11.75"
12' 7.50" 12' 11.75" 12' 10.50"
 
11 1 Pace, Mcaleese, Niamh FR Garfield 12' 6.50" 12' 6.50"
12' 6.50" FOUL FOUL
 
199 Jacobson, Allison JR Roosevelt NM
FOUL FOUL FOUL
 

Compiled round results are printed first, and only if the Round Compilation option has been selected. For each round, an <h4> element with class .round-results-hdr is printed with the round name.

A <table> element is created and specified with the classes .results-table, .table, .table-striped, .table-bordered, .table-condensed For information on the last four classes, see the Bootstrap Docs. Note that the columns present depend upon the options selected in the report filter. The structure of a round results table is detailed below:

<table class="results-table table table-striped table-bordered table-condensed">
  <thead>
    <tr>
      <th class="place">PL</th>
      <th class="jd">JD</th>
      <th class="comp">#</th>
      <th class="athlete">Athlete</th>
      <th class="year">Yr.</th>
      <th class="team">Team</th>
      <th class="mark">Mark</th>
      <th class="english">English</th>
      <th class="attempts">Attempts</th>
      <th class="points">Pts</th>
      ...
    </tr>
  </thead>
  <tbody>
    ...
    Results
    ...
  <tbody>
</table>

The table cells are specified with straightforward classes, and are minimally styled with the following defaults:

.lane, .place, .hplace, .jd, .comp, .squad, .year, .time, .mark, .wind, .points, .score { 
    text-align:center;
}

td.mark, td.time, td.wind {
    text-align:right;
}
  
.place, .jd, .points {
    width:35px;
}

.lane, .year, .comp { 
    width:40px; 
}

.hplace { 
    width:45px; 
}

.squad, .wind { 
    width:50px; 
}

.time, .mark { 
    width:80px; 
}

<th> and <td> elements can easily have different styles applied by using more specific selectors. For example, th.time and td.time.

Heat by heat results are printed after compiled round results, and only if the Heat by Heat option has been selected. Events with only one heat and one round will print results in the compiled format above. The format of the heat results table is exactly the same, except that the .hplace cell is first. If Round Compilation is not selected, an overall .place column will follow the .points column. In the case of ties, if the Note filter has been applied, a .note column will show the tie-break to the thousandth when the data is available.

Horizontal Field Series

For field events which measure horizontal distance, a six cell <table> with class .attempts is generated to represent the Field Series.

<td class="attempts">
  <table class="horizontal-table">
    <tbody>
      <tr>
        <td class="mark">...</td>
		<td class="mark">...</td>
        <td class="mark">...</td>
		<td class="mark">...</td>
		<td class="mark">...</td>
		<td class="mark">...</td>
      </tr>
	</tbody>
  </table>
</td>

The following default styles are applied to the .horizontal-table

.horizontal-table{
	width:100%;	
}

.horizontal-table td{
	font-size:11px;
	height:12px;
}