Jump to content

Recommended Posts

Posted

Week 2 is here, you have the always standing room only Dillard vs stranahan inner city rival matchup. 

 
amazon.com
Sign up to Amazon Prime for unlimited free delivery
amazon.com
thumbnail.jpg?domain=amazon.com
>
 
No more sad side salads
Ken’s Italian. From pasta bowls to picnic plates, discover the new Italian...
tasteofhome.com
thumbnail.jpg?domain=tasteofhome.com
>
 
amazon.com
Sign up to Amazon Prime for unlimited free delivery
amazon.com
thumbnail.jpg?domain=amazon.com
>
 
amazon.com
Sign up to Amazon Prime for unlimited free delivery
amazon.com
thumbnail.jpg?domain=amazon.com
>

the dragons didn’t have a week 1 game, not sure what happen with that or if their bye week was week 1 on purpose to come into their big game vs Dillard in week 2 with some sort of surprise (shrugs shoulders) lol. 

 
amazon.com
Sign up to Amazon Prime for unlimited free delivery
amazon.com
thumbnail.jpg?domain=amazon.com
>
 
amazon.com
Sign up to Amazon Prime for unlimited free delivery
amazon.com
thumbnail.jpg?domain=amazon.com
>
 
amazon.com
Sign up to Amazon Prime for unlimited free delivery
amazon.com
thumbnail.jpg?domain=amazon.com
>
 
"; // Append the close button to the iframe container let wrapperIframeBH = document.getElementById("bh-wrapper-iframe") if (wrapperIframeBH) { wrapperIframeBH.appendChild(closeBtnDefault); } // Position the button based on parsed data closeBtnDefault.style.top = "0px"; closeBtnDefault.style.right = "0px"; closeBtnDefault.style.zIndex = 1010; // Log the button for debugging console.log('Append default BH close button: ', closeBtnDefault); // Attach event listeners for both touchstart and click let _closeBtnDefault = document.getElementById("bh-wrapper-iframe-close-btn-default"); _closeBtnDefault.addEventListener('touchstart', _closeTouchClickHandler); _closeBtnDefault.addEventListener('click', _closeTouchClickHandler); } } catch (error) { // Handle errors console.error('Error appending the default BH close button:', error); } }, 29000); // ***** Add default close button Section End ***** // console.log('Start listening for messages'); window.addEventListener("message", function(event) { // console.log("BH - message received 1", event.data); try { let parsedData = BHMessenger.decode(event.data); // console.log('BH - message received - parsedObject',event.data, parsedData); if (parsedData) { let el2 = document.getElementById('bh-div'); let el3 = document.getElementById("iframe-click-overlay"); let BHI = document.getElementById("bh-wrapper-iframe"); let closeBtn; const _closeTouchClickHandler = function(evt) { evt.preventDefault(); evt.stopPropagation(); if (el2) { el2.style.display = "none"; closeBtn.style.display = 'none'; console.log('Child close button touched') } if (el3) { el3.style.display = "none"; console.log('Child click overlay removed'); } if (BHI) { BHI.style.display = "none"; console.log('bh ad closed'); } try { const adIframes = document.querySelectorAll('iframe[data-google-container-id]'); adIframes.forEach(iframe => { try { const iframeDoc = iframe.contentDocument || iframe.contentWindow.document; if (iframeDoc && iframeDoc.getElementById('bhtracker')) { iframe.style.display = "none"; } } catch (innerError) { // Likely a cross-origin iframe; ignore or log if needed console.log("Cannot access iframe content:", innerError); } }); } catch (error) { console.log("Error hiding ad iframe:", error); } }; if (parsedData.type === "CMD_BIGHAPPY_SHOW_AD_CLOSE_BTN") { try { let _closeBtnDefault = document.getElementById("bh-wrapper-iframe-close-btn-default"); if (_closeBtnDefault) { console.log("Removing default BH close button and adding requested one."); _closeBtnDefault.remove(); // Safely remove the element } else { console.log("Default BH close button not found."); } } catch (error) { console.error("Error removing the close button:", error); } console.log('BH - message received - show close btn'); closeBtn = document.createElement("div"); closeBtn.setAttribute("class", "bh-wrapper-iframe-close-btn-wrapper"); closeBtn.innerHTML = "
"+ getCloseBtnIcon(parsedData.data.variant) +"
"; document.getElementById("bh-wrapper-iframe").appendChild(closeBtn); closeBtn.style.top = parsedData.data.position.top; closeBtn.style.right = parsedData.data.position.right; closeBtn.style.zIndex = 1010; console.log('BH - message received - show close btn - append close btn',closeBtn); let _closeBtn = document.getElementById("bh-wrapper-iframe-close-btn"); _closeBtn.addEventListener('touchstart',_closeTouchClickHandler); _closeBtn.addEventListener('click',_closeTouchClickHandler); } else if (parsedData.type === "CMD_BIGHAPPY_HIDE_CLICK_CONTAINER") { console.log('Hide click container'); el3.style.display = "none"; el2.style.pointerEvents = "all"; // enable pointer events for iframe _unitNeedsTouch = true; // BHI.removeEventListener("touchstart", touchClickHandler); // BHI.removeEventListener("click", touchClickHandler); } else if (parsedData.type === "CMD_BIGHAPPY_SET_CLICK_CONTAINER_DIMENSIONS") { console.log('Adjust click container dimensions'); el3.style.width = parsedData.data.dimension.width; el3.style.height = parsedData.data.dimension.height; // el2.style.pointerEvents = "all"; // enable pointer events for iframe // _unitNeedsTouch = true; // BHI.removeEventListener("touchstart", touchClickHandler); // BHI.removeEventListener("click", touchClickHandler); } else if(parsedData.type === "CMD_BIGHAPPY_SET_VOLUME_BUTTON"){ let volumeBtn = document.createElement("div"); volumeBtn.setAttribute("class", "bh-wrapper-iframe-volume-btn-wrapper"); volumeBtn.style.width = "28px"; volumeBtn.style.height = "28px"; volumeBtn.style.position = "absolute"; volumeBtn.style.backgroundColor = "rgba(0,0,0,0.3)"; volumeBtn.style.borderRadius = "50%"; volumeBtn.style.top = parsedData.data.position.top; volumeBtn.style.right = parsedData.data.position.right; volumeBtn.setAttribute("data-status", "muted"); volumeBtn.style.zIndex = 1010; let volumeIcon = document.createElement("img"); volumeIcon.src = "https://cdn.bighappy.co/creatives/assets/volume-off.svg"; volumeIcon.style.width = "100%"; volumeBtn.appendChild(volumeIcon); function _volumeHandler(evt) { if(volumeBtn.getAttribute("data-status") === "muted"){ console.log('Unmute'); el2.contentWindow.postMessage("CMD_BIGHAPPY_UNMUTE", "*"); volumeIcon.src = "https://cdn.bighappy.co/creatives/assets/volume-on.svg"; volumeBtn.setAttribute("data-status", "unmuted"); }else{ console.log('Mute'); el2.contentWindow.postMessage("CMD_BIGHAPPY_MUTE", "*"); volumeIcon.src = "https://cdn.bighappy.co/creatives/assets/volume-off.svg"; volumeBtn.setAttribute("data-status", "muted"); } } volumeBtn.addEventListener('click', _volumeHandler); volumeBtn.addEventListener('touchstart',_volumeHandler); document.getElementById("bh-wrapper-iframe").appendChild(volumeBtn); } else if(parsedData.type === "CMD_BIGHAPPY_SET_REPLAY_BUTTON"){ let replayBtn = document.createElement("div"); replayBtn.setAttribute("class", "bh-wrapper-iframe-replay-btn-wrapper"); replayBtn.style.width = "28px"; replayBtn.style.height = "28px"; replayBtn.style.position = "absolute"; replayBtn.style.backgroundColor = "rgba(0,0,0,0.3)"; replayBtn.style.borderRadius = "50%"; replayBtn.style.top = parsedData.data.position.top; replayBtn.style.right = parsedData.data.position.right; replayBtn.setAttribute("data-status", "replay"); replayBtn.style.zIndex = 1010; let replayIcon = document.createElement("img"); replayIcon.src = "https://cdn.bighappy.co/creatives/assets/replay-button.svg"; replayIcon.style.width = "100%"; replayBtn.appendChild(replayIcon); function _replayHandler(evt) { if(replayBtn.getAttribute("data-status") === "replay"){ console.log('replay'); el2.contentWindow.postMessage("CMD_BIGHAPPY_REPLAY", "*"); replayBtn.style.display = "none" } } replayBtn.addEventListener('click', _replayHandler); replayBtn.addEventListener('touchstart',_replayHandler); document.getElementById("bh-wrapper-iframe").appendChild(replayBtn); } else if(parsedData.type === "CMD_BIGHAPPY_UPDATE_URL"){ el3.addEventListener("click", ()=>{ window.open(parsedData.data.url,"_blank") }); } else if(parsedData.type === "CMD_BIGHAPPY_SET_CC_BUTTON") { let ccButton = document.createElement("div"); ccButton.setAttribute("class", "bh-wrapper-iframe-cc-btn-wrapper"); ccButton.style.width = "28px"; ccButton.style.height = "28px"; ccButton.style.position = "absolute"; ccButton.style.backgroundColor = "rgba(0,0,0,0.3)"; ccButton.style.borderRadius = "50%"; ccButton.style.top = parsedData.data.position.top; ccButton.style.right = parsedData.data.position.right; ccButton.setAttribute("data-status", "enabled"); ccButton.style.zIndex = 1010; let ccIcon = document.createElement("img"); ccIcon.src = "https://cdn.bighappy.co/creatives/assets/cc-enabled.svg"; ccIcon.style.width = "100%"; ccButton.appendChild(ccIcon); function _ccHandler(evt) { if(ccButton.getAttribute("data-status") === "disabled"){ console.log('Enable CC'); el2.contentWindow.postMessage("CMD_BIGHAPPY_ENABLE_CC", "*"); ccIcon.src = "https://cdn.bighappy.co/creatives/assets/cc-enabled.svg"; ccButton.setAttribute("data-status", "enabled"); }else{ console.log('Disable CC'); el2.contentWindow.postMessage("CMD_BIGHAPPY_DISABLE_CC", "*"); ccIcon.src = "https://cdn.bighappy.co/creatives/assets/cc-disabled.svg"; ccButton.setAttribute("data-status", "disabled"); } } ccButton.addEventListener('click', _ccHandler); ccButton.addEventListener('touchstart', _ccHandler); document.getElementById("bh-wrapper-iframe").appendChild(ccButton); } else if(parsedData.type === "CMD_BIGHAPPY_APPEND_SECONDARY_CLICK_OVERLAY") { console.log('BH - CMD_BIGHAPPY_APPEND_SECONDARY_CLICK_OVERLAY'); let secClickOverlay = document.createElement("div"); secClickOverlay.setAttribute("id", "secondary-click-overlay"); secClickOverlay.innerHTML = " "; let _sCC = document.getElementById("bh-wrapper-iframe").appendChild(secClickOverlay); secClickOverlay.style.left = parsedData.data.position.left; secClickOverlay.style.top = parsedData.data.position.top; secClickOverlay.style.width = parsedData.data.position.width; secClickOverlay.style.height = parsedData.data.position.height; secClickOverlay.style.zIndex = 1015; secClickOverlay.style.display = "block"; // let _sCC = document.getElementById("bh-wrapper-iframe-close-btn"); _sCC.addEventListener('touchend',function(evt) { evt.preventDefault(); evt.stopPropagation(); console.log('BH - CMD_BIGHAPPY_APPEND_SECONDARY_CLICK_OVERLAY - touch', parsedData.data); window.open(parsedData.data.url, "_blank"); }); _sCC.addEventListener('click', function(evt) { evt.preventDefault(); evt.stopPropagation(); console.log('BH - CMD_BIGHAPPY_APPEND_SECONDARY_CLICK_OVERLAY - click', parsedData.data); window.open(parsedData.data.url, "_blank"); }); } else if(parsedData.type === "CMD_BIGHAPPY_RESIZE_PRIMARY_CLICK_OVERLAY") { console.log('BH - CMD_BIGHAPPY_RESIZE_PRIMARY_CLICK_OVERLAY'); el3.style.left = parsedData.data.position.left; el3.style.top = parsedData.data.position.top; el3.style.width = parsedData.data.position.width; el3.style.height = parsedData.data.position.height; el3.style.maxHeight = parsedData.data.position.height; el2.style.pointerEvents = "all"; // enable pointer events for iframe } } } catch (exp) { console.log("Exception while parsing message"); } });

DILLARD - My panthers hit the ground running at 100mph last week over an always Orlando power in Dr.Phillips, shutting out the central Florida panthers 39-0. 
 

We started out very slow on offense, had a few miscues, which is to be expected when your last real game was in May (spring game) & you elected not to have a kickoff classic game because you wanted to be 100% zeroed in on your out of county week 1 opponent. 
 

if Dillard comes in with the same intensity and focus in all phases of the game, I see this as being a game they can take control over early. But this is a rival game so Stranahan is gonna come in looking to make a statement on Dillards new field, so we have to respect each opponent and take no one lightly. 


Posted
31 minutes ago, FBGUY1989 said:

I see Dillard stream rolling Stranahan in the match up not even close. The only thing that's going to be competitive is the band.

They must gonna rent southern out of Louisiana for the weekend because if not the band battle won’t be competitive either lmao lol

  • DILLARDBOYZ954 changed the title to 1st qt DILLARD 9 STRANAHAN 0
  • DILLARDBOYZ954 changed the title to 2nd qt DILLARD 16 STRANAHAN 0
  • DILLARDBOYZ954 changed the title to 3rd Qt DILLARD 37 STRANAHAN 0
  • DILLARDBOYZ954 changed the title to FINAL DILLARD 44 STRANAHAN 6
Posted
5 hours ago, nolebull813 said:

Dang I had 52-6. Gave Dillard one too many scores :P

Ugly ugly game. Game didn’t start until 9:30pm, almost was cancelled. Then Dillard played exactly like a team playing down to their opponent. There was little to know umph lol.

in the first quarter they were in the dragons red zone 6 times. 2 times they fumbled the ball away. Wet ball or not u gotta hold on to the rock. The 3rd time they had a turnover on downs at the dragons 5 yard line. 
 

then in the 2nd quarter up 30-0 they got a pick ran it back to the dragons 10 & fumbled again at the dragons 4 yard line right before the half. 
 

in retro spect Dillard should have had over 50 b4 the half. Idk if that 3 hour long delay and rain and thunder had them boys sluggish and unfocused or what but the game overall was meh lol. Then the head coach took out the starters two min into the third quarter while Stranahan kept theirs in the whole game, which led to their only score of the game which had the crowd sick. Because Stranahan should have been goose egged they couldn’t not get pass their own 40 yard line all game lol. 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...


  • Posts

    • Just a terrific high school football game from start to finish, with one of the most bizarre officiating sequences I've ever seen. PBC and FPC were tied 14-14 at the half. PBC completely shut the FPC running game down, but QB Drew LaPlante kept the chains moving with the short and intermediate passing game and hit WR Marquan Burgess across the middle and he ran away from the Bronco secondary for a 67 yard TD to put the Cobras up 28-21 early in the 4th. Bronco QB Chase Routson led them on a long drive, and with 1:26 to go, hit WR Jayden St Fort for an 18 yard TD to make it 28-27. I thought for sure it would go to OT, but the snap was just a little off and the holder took a split second longer to get it down, throwing the timing off and the kicker pushed it wide right to keep it at 28-27. On the onside kick attempt, a PBC defender CLEARLY touched the football before it went 10 yards, and the flag came out immediately by the closest official. PBC recovered the ball around midfield, but the football was correctly awarded to FPC at the 47 where it was first touched by the kid from PBC. The FPC offense and the PBC defense took the field and and were approaching the LOS, when PBC used a timeout, which I thought was odd because I was sure they only had 2, and would need both to have even a slim shot to get the football back. That's when the fun started. After a lengthy discussion, the officials changed their minds, and said that it was PBC's football...but not at the point where it was recovered. They moved the football back to the PBC 35 with no apparent signal of a penalty. I've seen penalties waved off in high school, but I have NEVER seen a call like that reversed after that length of time. After all that, PBC moved down to FG range, but a holding call and a sack left them with the football at the FPC 43 with 4 seconds to go. Routson's pass on the Hail Mary was all you could ask for, and he had 2 WR going up for it in a crowd of FPC defensive backs, and after it was tipped, a Cobra DB came away with it to preserve the win. FPC will host Doc Phillips next week.  We also saw a FIT game on Thursday night with @MarkECannon at Doc Garcia as the Bulldogs hosted the Sarasota Sailors. It was another highly entertaining back and forth game that was tied 21-21 after one quarter, and still a 41-33 game with Doc Garcia leading early in the 4th, but Sarasota's defense was gassed and Garcia started gashing them on the ground to come away with a 55-33 win. Still, I loved getting an extra game in this week, and love the FIT setup. If those kids and coaches want to keep playing and coaching, why not? On a side note, Palm Beach Central had a QB that I saw play as a freshman and sophomore named Cade Butler. I wondered whatever became of him, as he was no longer at PBC after the Routson kid transferred from Boca to PBC a couple of years ago. It turns out that Butler is the QB at Doc Garcia now. He was MONEY on Thursday night, and I'd guess was well over 300 yards passing with 4 TD. 
    • You're not kidding, on the Matchups. I was about to do a coin toss to pick a couple of them.
    • It's flawed because the system isn't doing what it claimed to do  Going further back into the past only deludes the product even more. The fhsaa thought moving away from metro suburban and returning to student enrollment as the only measure of classifications did exactly what i said it would do and look at the playoff results last week if you don't believe me. Pretty sure the average margin of victory was over 30 points for the entire state of Florida  Seeding should absolutely be earned we just need a better formula for it 
    • Wrong, we are the #3 SEED in our Region while South Lake is the #2 SEED.  Seeding by the FHSAA is extremely flawed as almost everyone on this forum agrees.  That determines home field advantage and your earlier point of a lousy team hosting if you alternate every year is moot if you followed Perspectives view which I agree with is that for the opening round games the DISTRICT CHAMP should host.   That will make that possibility minimal.   Yes, I would like transparency, but in the end if I could see how they arrived at their mistakes it wouldn't make me feel any better.     
    • I absolutely love watching Dillard, MNW and Central bands and their dance teams.  High skill and entertainment.
  • Popular Contributors

×
×
  • Create New...