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

Team test event

10/11/2025 - 03/31/2026
city , Armed Forces Americas

INFORMATION

  • Age groups:
    1 Divisions 9U
  • Pool Play:
    Saturday, October 11th through Monday, March 30th, 2026
  • Price:
    9U - $185
  • Playoffs/Championships:
    Tuesday, March 31st, 2026

Registration

  • DIVISION:
    • 9U
    • Champions
    110 Teams Registered
    COST: $185

College Coaches Attending

Teams

(106 teams) - Champions

Locations

Abe Levitt Park test

52 Stewart Ave

Hicksville

Get Directions
VENUE DIVISIONS
  • 9U
Fields
  • field 3223
    • Turf
    • Permanent Bathrooms
  • field 4443
    • Turf
    • Permanent Bathrooms
VENUE DETAILS

Abe Levitt Park

Allen Field

West Road Ashby

Ashby massachusetts , United States

Get Directions
VENUE DIVISIONS
  • 9U
Fields
    Testing venue

    43 S Ludlow St 43 South Ludlow Street, Hadwen Park

    Worcester massachusetts , United States

    Get Directions
    VENUE DIVISIONS
    • 9U
    Fields
      VENUE DETAILS

      Abe Levitt Park


      Click

      Ty Cobb Little League

      43 South Ludlow Street Hadwen Park

      Worcester massachusetts , United States

      Get Directions
      VENUE DIVISIONS
      • 9U

      schedule

      HOTELS

      Standings

      #TeamWLTRARSRDW%

      Brackets

      TOP PERFORMERS

      This is a final testing message to check the supportLorem 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);});