© Copyright 2018 – 2024 FIRECRACKER SPORTS. All Rights Reserved.​ TERMS OF USE  |  PRIVACY POLICY

Team test event

04/01/2025 - 04/30/2026
Los Angeles,  California

INFORMATION

  • Age groups:
    6 Divisions 9U 10U 11U 12U 13U 18U
  • Pool Play:
    Tuesday, April 1st through Wednesday, April 29th, 2026
  • Price:
    9U - $15010U - $20011U - $012U - $013U - $018U - $0
  • Playoffs/Championships:
    Thursday, April 30th, 2026

Registration

  • DIVISION:
    • 10U
    • 11U
    • 12U
    • 13U
    • 18U
    • OPEN
    • OPEN
    • OPEN
    • OPEN
    • OPEN
    • Premier
    65 Teams Registered
    COST: $0 - $200

College Coaches Attending

Teams

(9 teams) - OPEN
(27 teams) - OPEN
(6 teams) - OPEN
(7 teams) - OPEN
(5 teams) - OPEN
(3 teams) - Premier

Locations

Abe Levitt Park

52 Stewart Ave

Hicksville new york , USA

Get Directions
VENUE DIVISIONS
  • 9U
Fields
  • field 3
    • Permanent Bathrooms
  • field 4
    • Permanent Bathrooms
VENUE DETAILS

Abe Levitt Park

Alumni Field

50 Alumni Road

Newington connecticut

Get Directions
VENUE DIVISIONS
  • 10U
Fields
  • Alumni Field
    • Lights
    • Grass
VENUE DETAILS

Alumni Field

  • Natural grass playing surface

American Legion Field

10200 Seaview Avenue

Brooklyn new york , United States

Get Directions
VENUE DIVISIONS
  • 11U
Fields
  • Field #1
    • Grass
    • Permanent Bathrooms
Archbishop Stepinac HS

950 Mamaroneck Ave

White Plains new york , USA

Get Directions
VENUE DIVISIONS
  • 12U
Fields
  • field 1
    • Lights
  • field 2
    • Grass
VENUE DETAILS

Archbishop Stepinac HS

Ardsley LL

377-459 Heatherdell Road

Ardsley new york , USA

Get Directions
VENUE DIVISIONS
  • 13U
Fields
  • Field 1
    • Lights
  • Field 2
    • Lights
VENUE DETAILS

Ardsley LL

Ty Cobb Little League

43 South Ludlow Street Hadwen Park

Worcester massachusetts , United States

Get Directions
VENUE DIVISIONS
  • 10U
Fields
  • 50/70 Field
    • Grass
    • Portable Bathrooms
  • 46/60 Field
    • Grass
    • Portable Bathrooms
  • 46/60 Field (Back)
    • Grass
    • Portable Bathrooms

schedule

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum

HOTELS

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum

Standings

#TeamWLTRARSRDW%

Brackets

TOP PERFORMERS

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

RULES

There is no rules.

WEATHER

×

Request for More Info

`);printWindow.document.close(); }); }); function extractTeamName(teamDetails) {if (!teamDetails) return null; // ❌ No more "TBD"// If already object if (typeof teamDetails === "object") { return teamDetails.team_name ?? null; }// Extract from PHP serialized string let match = teamDetails.match(/team_name";s:\d+:"([^"]+)"/);return match ? match[1] : null; // ❌ No fallback to TBD } $(document).on("change", ".series-game-dropdown", function () {let dropdown = $(this); let selectedGameName = dropdown.val(); if (!selectedGameName) return;let baseGame = dropdown.data("base-game");let divisionId = $("#division_select").val(); let eventId = $("#event_id").val();let matchContainer = dropdown.closest(".match-container"); let matchBox = matchContainer.find(".match");matchContainer.data("series", {}); let series = matchContainer.data("series");$.ajax({ url: gpe.ajax_url, method: "POST", dataType: "json", data: { action: "gpe_ajax", type: "get_series_game_single", event_id: eventId, division_id: divisionId, base_game: baseGame, game_index: selectedGameName },success: function (response) {if (!response.success) return;let game = response.data;let team1 = game.team_name1; let team2 = game.team_name2;/* existing condition */ if (!team1 || !team2 || team1.trim() === "" || team2.trim() === "") { return; }let score1 = parseInt(game.team1_score) || 0; let score2 = parseInt(game.team2_score) || 0;/* update team names (existing logic) */ matchBox.find(".team-name").eq(0).text(team1); matchBox.find(".team-name").eq(1).text(team2);/* ⭐ ADD THIS PART — USE SERIES WINS FROM AJAX */ if (typeof game.team1_series_wins !== "undefined") { matchBox.find(".score").eq(0).text(game.team1_series_wins); }if (typeof game.team2_series_wins !== "undefined") { matchBox.find(".score").eq(1).text(game.team2_series_wins); }let totalWin1 = 0; let totalWin2 = 0;Object.values(series).forEach(g => { totalWin1 += g.t1; totalWin2 += g.t2; });matchBox.find(".score").eq(0).text(game.team1_series_wins); matchBox.find(".score").eq(1).text(game.team2_series_wins);let gameIndex = selectedGameName.slice(-1).toLowerCase();series[gameIndex] = { team1: team1, team2: team2, s1: score1, s2: score2 };let container = dropdown.closest(".series-dropdown-bottom");container.find(".all-series-scores").remove();let html = "";Object.keys(series).sort().forEach(function (k) {let g = series[k];let num = 1; if (k === "b") num = 2; if (k === "c") num = 3;let row = "";if (g.s1 >= g.s2) {row = `
G${num} ${g.team1} ${g.s1}–${g.s2} ${g.team2}
`;} else {row = `
G${num} ${g.team2} ${g.s2}–${g.s1} ${g.team1}
`;}html += row; });container.append(`
${html}
`);} });});/* trigger once per dropdown after load */ $(document).ready(function(){setTimeout(function(){$(".series-game-dropdown").each(function(){ $(this).trigger("change"); });},300);});