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

2026 Myrtle Beach Memorial Day Bash

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

INFORMATION

  • Age groups:
    1 Divisions 9U
  • Pool Play:
    Saturday, October 11th through Wednesday, December 30th, 2026
  • Price:
    9U - $150
  • Playoffs/Championships:
    Thursday, December 31st, 2026

Registration

  • DIVISION:
    • 9U
    • Champions
    2 Teams Registered
    COST: $150

College Coaches Attending

No gallery images found.

Teams

(2 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

    schedule

    HOTELS

    Standings

    #TeamWLTRARSRDW%

    Brackets

    TOP PERFORMERS

    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);});