Login with Patreon to Remove Ads

Launch Messages

Instructions


Event Creation Instructions

  1. Browse to the Facebook Page (ensure that you are logged in as the Monkey) and duplicate a similar event from the same location as the new launch event.
  2. Set the start date/time to the beginning of the launch window, and the end date/time to the end of the launch window, as shown on the website.
  3. Update the event title appropriately and the event description to the “Facebook Event Description” below.
  4. Click the create event button.
  5. Under the Discussion tab, post in the event the “Facebook Event Description”.
  6. Share the event with the Space Launch Schedule group using the “Facebook Event Description” and add the launch location to the post.
  7. Create a post for each of the following links in the event:
    • https://www.spacelaunchschedule.com/faq/
    • https://www.spacelaunchschedule.com/rocket-launch-viewing-guide/
    • Florida: https://www.spacelaunchschedule.com/news/ultimate-guide-to-viewing-locations/
    • California: https://www.spacelaunchschedule.com/category/vandenberg-rocket-launch-viewing/

Notifications Instructions

For USA rocket launches, three messages are sent before liftoff: 24 hours, 1 hour, and 30 minutes before. In the WordPress theme, code has been written to send notifications via Publer, Firebase, and OneSignal automatically. The Facebook Events and Facebook Group notifications need to be manually scheduled directly on Facebook. The message content is listed below.

Resources/Links

If the rocket launch is delayed before liftoff

  • The website should be updated with the new launch time, but it can be updated manually.
  • Refresh the website cache by clicking on the “Performance” link at the top of the page.

If the rocket launch is delayed before the “1 hour” or “video feed” messages are sent.

After 30 minutes, if the launch is successful and the booster lands successfully

Message Content


Copy Facebook Event Description

🚀 NASA Rocket Launch Alert! 🚀

📅 NASA is scheduled to launch a Space Launch System (SLS) rocket from Florida as part of the Artemis II mission..

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/sls-block-1-artemis-ii

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #NASA #Florida #CapeCanaveral #KSC #KennedySpaceCenter #ArtemisII #SpaceLaunchSystemSLS

Copy Trajectory Message

🚀 NASA Rocket Launch Alert! 🚀

📅 NASA is scheduled to launch a Space Launch System (SLS) rocket from Florida as part of the Artemis II mission.

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/sls-block-1-artemis-ii

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #NASA #Florida #CapeCanaveral #KSC #KennedySpaceCenter #ArtemisII #SpaceLaunchSystemSLS

Copy 24/1 Hour Message 🚀 In 1 hour, NASA is scheduled to launch a Space Launch System (SLS) rocket from Florida. 🕛 Tap for details.

🚀 NASA Rocket Launch Alert! 🚀

🕛 In 1 hour, NASA is scheduled to launch a Space Launch System (SLS) rocket from Florida as part of the Artemis II mission.

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/sls-block-1-artemis-ii

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #NASA #Florida #CapeCanaveral #KSC #KennedySpaceCenter #ArtemisII #SpaceLaunchSystemSLS

Copy Live Video Feed Message 🚀 The NASA live video feed of the Space Launch System (SLS) rocket launch from Florida is about to start! 🎥 Tap to watch and get updates.

🚀 NASA Rocket Launch Live Video Feed! 🚀

🎥 The NASA live video feed of the Space Launch System (SLS) rocket launch from Florida is about to start!

Tune in and get launch updates here: https://www.spacelaunchschedule.com/launch/sls-block-1-artemis-ii

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #NASA #Florida #CapeCanaveral #KSC #KennedySpaceCenter #ArtemisII #SpaceLaunchSystemSLS

Copy Delay Message 🚀 The NASA Space Launch System (SLS) rocket launch from Florida has been delayed. 😞 Tap for updates.

🚀 NASA Rocket Launch Delayed! 🚀

😞 The NASA Space Launch System (SLS) rocket launch from Florida as part of the Artemis II mission has been delayed.

Get updates here: https://www.spacelaunchschedule.com/launch/sls-block-1-artemis-ii

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #NASA #Florida #CapeCanaveral #KSC #KennedySpaceCenter #ArtemisII #SpaceLaunchSystemSLS

Copy Congratulations Message

🚀 Congrats to NASA for the launch of a Space Launch System (SLS) from Florida as part of the Artemis II mission.

🎉 If you missed it, watch the replay here: https://www.spacelaunchschedule.com/launch/sls-block-1-artemis-ii

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #NASA #Florida #CapeCanaveral #KSC #KennedySpaceCenter #ArtemisII #SpaceLaunchSystemSLS

function copyToClipboard(event, element, feedbackId) { const textToCopy = element.getAttribute('data-copy-text'); // Decode HTML entities for proper line breaks const decodedText = textToCopy.replace(/ /g, '\n'); // Get click coordinates const clickX = event.clientX; const clickY = event.clientY; // Modern clipboard API if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(decodedText).then(function() { showCopyFeedback(clickX, clickY); }).catch(function(err) { console.error('Failed to copy text: ', err); fallbackCopyToClipboard(decodedText, clickX, clickY); }); } else { fallbackCopyToClipboard(decodedText, clickX, clickY); } } function fallbackCopyToClipboard(text, clickX, clickY) { const textArea = document.createElement('textarea'); textArea.value = text; textArea.style.position = 'fixed'; textArea.style.left = '-999999px'; document.body.appendChild(textArea); textArea.select(); try { document.execCommand('copy'); showCopyFeedback(clickX, clickY); } catch (err) { console.error('Fallback: Failed to copy text: ', err); } document.body.removeChild(textArea); } function showCopyFeedback(clickX, clickY) { // Create toast element const toastId = 'toast-' + Date.now(); const toastHTML = ` `; // Add toast to body document.body.insertAdjacentHTML('beforeend', toastHTML); // Get toast element and position it near click const toastElement = document.getElementById(toastId); // Position toast near click location with offset const offsetX = 10; // pixels to right of cursor const offsetY = -10; // pixels above cursor // Calculate position ensuring toast stays within viewport let toastX = clickX + offsetX; let toastY = clickY + offsetY; // Get viewport dimensions const viewportWidth = window.innerWidth; const viewportHeight = window.innerHeight; // Adjust if toast would go off screen (estimate toast width/height) const toastWidth = 200; // approximate const toastHeight = 50; // approximate if (toastX + toastWidth > viewportWidth) { toastX = clickX - toastWidth - offsetX; } if (toastY < 0) { toastY = clickY + offsetY + toastHeight; } toastElement.style.left = toastX + 'px'; toastElement.style.top = toastY + 'px'; // Initialize and show toast if (typeof jQuery !== 'undefined' && jQuery.fn.toast) { jQuery(toastElement).toast('show'); // Remove toast from DOM after it's hidden jQuery(toastElement).on('hidden.bs.toast', function() { toastElement.remove(); }); } else { // Fallback if Bootstrap JS is not available toastElement.style.display = 'block'; setTimeout(function() { toastElement.remove(); }, 2000); } }
Copy Facebook Event Description

🚀 SpaceX Rocket Launch Alert! 🚀

📅 SpaceX is scheduled to launch a Falcon 9 rocket from Florida as part of the Starlink Group 10-58 mission..

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-10-58

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #Florida #CapeCanaveral #KSC #KennedySpaceCenter #Starlink #Falcon9

Copy Trajectory Message

🚀 SpaceX Rocket Launch Alert! 🚀

📅 SpaceX is scheduled to launch a Falcon 9 rocket from Florida as part of the Starlink Group 10-58 mission.

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-10-58

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #Florida #CapeCanaveral #KSC #KennedySpaceCenter #Starlink #Falcon9

Copy 24/1 Hour Message 🚀 In 24 hours, SpaceX is scheduled to launch a Falcon 9 rocket from Florida. 🕛 Tap for details.

🚀 SpaceX Rocket Launch Alert! 🚀

🕛 In 24 hours, SpaceX is scheduled to launch a Falcon 9 rocket from Florida as part of the Starlink Group 10-58 mission.

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-10-58

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #Florida #CapeCanaveral #KSC #KennedySpaceCenter #Starlink #Falcon9

Copy Live Video Feed Message 🚀 The SpaceX live video feed of the Falcon 9 rocket launch from Florida is about to start! 🎥 Tap to watch and get updates.

🚀 SpaceX Rocket Launch Live Video Feed! 🚀

🎥 The SpaceX live video feed of the Falcon 9 rocket launch from Florida is about to start!

Tune in and get launch updates here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-10-58

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #Florida #CapeCanaveral #KSC #KennedySpaceCenter #Starlink #Falcon9

Copy Delay Message 🚀 The SpaceX Falcon 9 rocket launch from Florida has been delayed. 😞 Tap for updates.

🚀 SpaceX Rocket Launch Delayed! 🚀

😞 The SpaceX Falcon 9 rocket launch from Florida as part of the Starlink Group 10-58 mission has been delayed.

Get updates here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-10-58

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #Florida #CapeCanaveral #KSC #KennedySpaceCenter #Starlink #Falcon9

Copy Congratulations Message

🚀 Congrats to SpaceX for the launch of a Falcon 9 from Florida as part of the Starlink Group 10-58 mission.

🎉 If you missed it, watch the replay here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-10-58

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #Florida #CapeCanaveral #KSC #KennedySpaceCenter #Starlink #Falcon9

function copyToClipboard(event, element, feedbackId) { const textToCopy = element.getAttribute('data-copy-text'); // Decode HTML entities for proper line breaks const decodedText = textToCopy.replace(/ /g, '\n'); // Get click coordinates const clickX = event.clientX; const clickY = event.clientY; // Modern clipboard API if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(decodedText).then(function() { showCopyFeedback(clickX, clickY); }).catch(function(err) { console.error('Failed to copy text: ', err); fallbackCopyToClipboard(decodedText, clickX, clickY); }); } else { fallbackCopyToClipboard(decodedText, clickX, clickY); } } function fallbackCopyToClipboard(text, clickX, clickY) { const textArea = document.createElement('textarea'); textArea.value = text; textArea.style.position = 'fixed'; textArea.style.left = '-999999px'; document.body.appendChild(textArea); textArea.select(); try { document.execCommand('copy'); showCopyFeedback(clickX, clickY); } catch (err) { console.error('Fallback: Failed to copy text: ', err); } document.body.removeChild(textArea); } function showCopyFeedback(clickX, clickY) { // Create toast element const toastId = 'toast-' + Date.now(); const toastHTML = ` `; // Add toast to body document.body.insertAdjacentHTML('beforeend', toastHTML); // Get toast element and position it near click const toastElement = document.getElementById(toastId); // Position toast near click location with offset const offsetX = 10; // pixels to right of cursor const offsetY = -10; // pixels above cursor // Calculate position ensuring toast stays within viewport let toastX = clickX + offsetX; let toastY = clickY + offsetY; // Get viewport dimensions const viewportWidth = window.innerWidth; const viewportHeight = window.innerHeight; // Adjust if toast would go off screen (estimate toast width/height) const toastWidth = 200; // approximate const toastHeight = 50; // approximate if (toastX + toastWidth > viewportWidth) { toastX = clickX - toastWidth - offsetX; } if (toastY < 0) { toastY = clickY + offsetY + toastHeight; } toastElement.style.left = toastX + 'px'; toastElement.style.top = toastY + 'px'; // Initialize and show toast if (typeof jQuery !== 'undefined' && jQuery.fn.toast) { jQuery(toastElement).toast('show'); // Remove toast from DOM after it's hidden jQuery(toastElement).on('hidden.bs.toast', function() { toastElement.remove(); }); } else { // Fallback if Bootstrap JS is not available toastElement.style.display = 'block'; setTimeout(function() { toastElement.remove(); }, 2000); } }
Copy Facebook Event Description

🚀 SpaceX Rocket Launch Alert! 🚀

📅 SpaceX is scheduled to launch a Falcon 9 rocket from California as part of the Starlink Group 17-35 mission..

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-17-35

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #California #Vandenberg #Starlink #Falcon9

Copy Trajectory Message

🚀 SpaceX Rocket Launch Alert! 🚀

📅 SpaceX is scheduled to launch a Falcon 9 rocket from California as part of the Starlink Group 17-35 mission.

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-17-35

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #California #Vandenberg #Starlink #Falcon9

Copy 24/1 Hour Message 🚀 In 24 hours, SpaceX is scheduled to launch a Falcon 9 rocket from California. 🕛 Tap for details.

🚀 SpaceX Rocket Launch Alert! 🚀

🕛 In 24 hours, SpaceX is scheduled to launch a Falcon 9 rocket from California as part of the Starlink Group 17-35 mission.

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-17-35

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #California #Vandenberg #Starlink #Falcon9

Copy Live Video Feed Message 🚀 The SpaceX live video feed of the Falcon 9 rocket launch from California is about to start! 🎥 Tap to watch and get updates.

🚀 SpaceX Rocket Launch Live Video Feed! 🚀

🎥 The SpaceX live video feed of the Falcon 9 rocket launch from California is about to start!

Tune in and get launch updates here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-17-35

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #California #Vandenberg #Starlink #Falcon9

Copy Delay Message 🚀 The SpaceX Falcon 9 rocket launch from California has been delayed. 😞 Tap for updates.

🚀 SpaceX Rocket Launch Delayed! 🚀

😞 The SpaceX Falcon 9 rocket launch from California as part of the Starlink Group 17-35 mission has been delayed.

Get updates here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-17-35

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #California #Vandenberg #Starlink #Falcon9

Copy Congratulations Message

🚀 Congrats to SpaceX for the launch of a Falcon 9 from California as part of the Starlink Group 17-35 mission.

🎉 If you missed it, watch the replay here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-17-35

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #California #Vandenberg #Starlink #Falcon9

function copyToClipboard(event, element, feedbackId) { const textToCopy = element.getAttribute('data-copy-text'); // Decode HTML entities for proper line breaks const decodedText = textToCopy.replace(/ /g, '\n'); // Get click coordinates const clickX = event.clientX; const clickY = event.clientY; // Modern clipboard API if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(decodedText).then(function() { showCopyFeedback(clickX, clickY); }).catch(function(err) { console.error('Failed to copy text: ', err); fallbackCopyToClipboard(decodedText, clickX, clickY); }); } else { fallbackCopyToClipboard(decodedText, clickX, clickY); } } function fallbackCopyToClipboard(text, clickX, clickY) { const textArea = document.createElement('textarea'); textArea.value = text; textArea.style.position = 'fixed'; textArea.style.left = '-999999px'; document.body.appendChild(textArea); textArea.select(); try { document.execCommand('copy'); showCopyFeedback(clickX, clickY); } catch (err) { console.error('Fallback: Failed to copy text: ', err); } document.body.removeChild(textArea); } function showCopyFeedback(clickX, clickY) { // Create toast element const toastId = 'toast-' + Date.now(); const toastHTML = ` `; // Add toast to body document.body.insertAdjacentHTML('beforeend', toastHTML); // Get toast element and position it near click const toastElement = document.getElementById(toastId); // Position toast near click location with offset const offsetX = 10; // pixels to right of cursor const offsetY = -10; // pixels above cursor // Calculate position ensuring toast stays within viewport let toastX = clickX + offsetX; let toastY = clickY + offsetY; // Get viewport dimensions const viewportWidth = window.innerWidth; const viewportHeight = window.innerHeight; // Adjust if toast would go off screen (estimate toast width/height) const toastWidth = 200; // approximate const toastHeight = 50; // approximate if (toastX + toastWidth > viewportWidth) { toastX = clickX - toastWidth - offsetX; } if (toastY < 0) { toastY = clickY + offsetY + toastHeight; } toastElement.style.left = toastX + 'px'; toastElement.style.top = toastY + 'px'; // Initialize and show toast if (typeof jQuery !== 'undefined' && jQuery.fn.toast) { jQuery(toastElement).toast('show'); // Remove toast from DOM after it's hidden jQuery(toastElement).on('hidden.bs.toast', function() { toastElement.remove(); }); } else { // Fallback if Bootstrap JS is not available toastElement.style.display = 'block'; setTimeout(function() { toastElement.remove(); }, 2000); } }
Copy Facebook Event Description

🚀 ULA Rocket Launch Alert! 🚀

📅 ULA is scheduled to launch a Atlas V 551 rocket from Florida as part of the Amazon Leo (LA-05) mission..

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/atlas-v-551-amazon-leo-la-05

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #ULA #Florida #CapeCanaveral #KSC #KennedySpaceCenter #AmazonLeoLA05 #AtlasV551

Copy 24/1 Hour Message 🚀 In 24 hours, ULA is scheduled to launch a Atlas V 551 rocket from Florida. 🕛 Tap for details.

🚀 ULA Rocket Launch Alert! 🚀

🕛 In 24 hours, ULA is scheduled to launch a Atlas V 551 rocket from Florida as part of the Amazon Leo (LA-05) mission.

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/atlas-v-551-amazon-leo-la-05

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #ULA #Florida #CapeCanaveral #KSC #KennedySpaceCenter #AmazonLeoLA05 #AtlasV551

Copy Live Video Feed Message 🚀 The ULA live video feed of the Atlas V 551 rocket launch from Florida is about to start! 🎥 Tap to watch and get updates.

🚀 ULA Rocket Launch Live Video Feed! 🚀

🎥 The ULA live video feed of the Atlas V 551 rocket launch from Florida is about to start!

Tune in and get launch updates here: https://www.spacelaunchschedule.com/launch/atlas-v-551-amazon-leo-la-05

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #ULA #Florida #CapeCanaveral #KSC #KennedySpaceCenter #AmazonLeoLA05 #AtlasV551

Copy Delay Message 🚀 The ULA Atlas V 551 rocket launch from Florida has been delayed. 😞 Tap for updates.

🚀 ULA Rocket Launch Delayed! 🚀

😞 The ULA Atlas V 551 rocket launch from Florida as part of the Amazon Leo (LA-05) mission has been delayed.

Get updates here: https://www.spacelaunchschedule.com/launch/atlas-v-551-amazon-leo-la-05

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #ULA #Florida #CapeCanaveral #KSC #KennedySpaceCenter #AmazonLeoLA05 #AtlasV551

Copy Congratulations Message

🚀 Congrats to ULA for the launch of a Atlas V 551 from Florida as part of the Amazon Leo (LA-05) mission.

🎉 If you missed it, watch the replay here: https://www.spacelaunchschedule.com/launch/atlas-v-551-amazon-leo-la-05

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #ULA #Florida #CapeCanaveral #KSC #KennedySpaceCenter #AmazonLeoLA05 #AtlasV551

function copyToClipboard(event, element, feedbackId) { const textToCopy = element.getAttribute('data-copy-text'); // Decode HTML entities for proper line breaks const decodedText = textToCopy.replace(/ /g, '\n'); // Get click coordinates const clickX = event.clientX; const clickY = event.clientY; // Modern clipboard API if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(decodedText).then(function() { showCopyFeedback(clickX, clickY); }).catch(function(err) { console.error('Failed to copy text: ', err); fallbackCopyToClipboard(decodedText, clickX, clickY); }); } else { fallbackCopyToClipboard(decodedText, clickX, clickY); } } function fallbackCopyToClipboard(text, clickX, clickY) { const textArea = document.createElement('textarea'); textArea.value = text; textArea.style.position = 'fixed'; textArea.style.left = '-999999px'; document.body.appendChild(textArea); textArea.select(); try { document.execCommand('copy'); showCopyFeedback(clickX, clickY); } catch (err) { console.error('Fallback: Failed to copy text: ', err); } document.body.removeChild(textArea); } function showCopyFeedback(clickX, clickY) { // Create toast element const toastId = 'toast-' + Date.now(); const toastHTML = ` `; // Add toast to body document.body.insertAdjacentHTML('beforeend', toastHTML); // Get toast element and position it near click const toastElement = document.getElementById(toastId); // Position toast near click location with offset const offsetX = 10; // pixels to right of cursor const offsetY = -10; // pixels above cursor // Calculate position ensuring toast stays within viewport let toastX = clickX + offsetX; let toastY = clickY + offsetY; // Get viewport dimensions const viewportWidth = window.innerWidth; const viewportHeight = window.innerHeight; // Adjust if toast would go off screen (estimate toast width/height) const toastWidth = 200; // approximate const toastHeight = 50; // approximate if (toastX + toastWidth > viewportWidth) { toastX = clickX - toastWidth - offsetX; } if (toastY < 0) { toastY = clickY + offsetY + toastHeight; } toastElement.style.left = toastX + 'px'; toastElement.style.top = toastY + 'px'; // Initialize and show toast if (typeof jQuery !== 'undefined' && jQuery.fn.toast) { jQuery(toastElement).toast('show'); // Remove toast from DOM after it's hidden jQuery(toastElement).on('hidden.bs.toast', function() { toastElement.remove(); }); } else { // Fallback if Bootstrap JS is not available toastElement.style.display = 'block'; setTimeout(function() { toastElement.remove(); }, 2000); } }
Copy Facebook Event Description

🚀 SpaceX Rocket Launch Alert! 🚀

📅 SpaceX is scheduled to launch a Falcon 9 rocket from California as part of the Starlink Group 17-21 mission..

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-17-21

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #California #Vandenberg #Starlink #Falcon9

Copy Trajectory Message

🚀 SpaceX Rocket Launch Alert! 🚀

📅 SpaceX is scheduled to launch a Falcon 9 rocket from California as part of the Starlink Group 17-21 mission.

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-17-21

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #California #Vandenberg #Starlink #Falcon9

Copy 24/1 Hour Message 🚀 In 24 hours, SpaceX is scheduled to launch a Falcon 9 rocket from California. 🕛 Tap for details.

🚀 SpaceX Rocket Launch Alert! 🚀

🕛 In 24 hours, SpaceX is scheduled to launch a Falcon 9 rocket from California as part of the Starlink Group 17-21 mission.

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-17-21

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #California #Vandenberg #Starlink #Falcon9

Copy Live Video Feed Message 🚀 The SpaceX live video feed of the Falcon 9 rocket launch from California is about to start! 🎥 Tap to watch and get updates.

🚀 SpaceX Rocket Launch Live Video Feed! 🚀

🎥 The SpaceX live video feed of the Falcon 9 rocket launch from California is about to start!

Tune in and get launch updates here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-17-21

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #California #Vandenberg #Starlink #Falcon9

Copy Delay Message 🚀 The SpaceX Falcon 9 rocket launch from California has been delayed. 😞 Tap for updates.

🚀 SpaceX Rocket Launch Delayed! 🚀

😞 The SpaceX Falcon 9 rocket launch from California as part of the Starlink Group 17-21 mission has been delayed.

Get updates here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-17-21

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #California #Vandenberg #Starlink #Falcon9

Copy Congratulations Message

🚀 Congrats to SpaceX for the launch of a Falcon 9 from California as part of the Starlink Group 17-21 mission.

🎉 If you missed it, watch the replay here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-starlink-group-17-21

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #California #Vandenberg #Starlink #Falcon9

function copyToClipboard(event, element, feedbackId) { const textToCopy = element.getAttribute('data-copy-text'); // Decode HTML entities for proper line breaks const decodedText = textToCopy.replace(/ /g, '\n'); // Get click coordinates const clickX = event.clientX; const clickY = event.clientY; // Modern clipboard API if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(decodedText).then(function() { showCopyFeedback(clickX, clickY); }).catch(function(err) { console.error('Failed to copy text: ', err); fallbackCopyToClipboard(decodedText, clickX, clickY); }); } else { fallbackCopyToClipboard(decodedText, clickX, clickY); } } function fallbackCopyToClipboard(text, clickX, clickY) { const textArea = document.createElement('textarea'); textArea.value = text; textArea.style.position = 'fixed'; textArea.style.left = '-999999px'; document.body.appendChild(textArea); textArea.select(); try { document.execCommand('copy'); showCopyFeedback(clickX, clickY); } catch (err) { console.error('Fallback: Failed to copy text: ', err); } document.body.removeChild(textArea); } function showCopyFeedback(clickX, clickY) { // Create toast element const toastId = 'toast-' + Date.now(); const toastHTML = ` `; // Add toast to body document.body.insertAdjacentHTML('beforeend', toastHTML); // Get toast element and position it near click const toastElement = document.getElementById(toastId); // Position toast near click location with offset const offsetX = 10; // pixels to right of cursor const offsetY = -10; // pixels above cursor // Calculate position ensuring toast stays within viewport let toastX = clickX + offsetX; let toastY = clickY + offsetY; // Get viewport dimensions const viewportWidth = window.innerWidth; const viewportHeight = window.innerHeight; // Adjust if toast would go off screen (estimate toast width/height) const toastWidth = 200; // approximate const toastHeight = 50; // approximate if (toastX + toastWidth > viewportWidth) { toastX = clickX - toastWidth - offsetX; } if (toastY < 0) { toastY = clickY + offsetY + toastHeight; } toastElement.style.left = toastX + 'px'; toastElement.style.top = toastY + 'px'; // Initialize and show toast if (typeof jQuery !== 'undefined' && jQuery.fn.toast) { jQuery(toastElement).toast('show'); // Remove toast from DOM after it's hidden jQuery(toastElement).on('hidden.bs.toast', function() { toastElement.remove(); }); } else { // Fallback if Bootstrap JS is not available toastElement.style.display = 'block'; setTimeout(function() { toastElement.remove(); }, 2000); } }
Copy Facebook Event Description

🚀 SpaceX Rocket Launch Alert! 🚀

📅 SpaceX is scheduled to launch a Falcon 9 rocket from Florida as part of the Cygnus CRS-2 NG-24 mission..

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-cygnus-crs-2-ng-24

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #Florida #CapeCanaveral #KSC #KennedySpaceCenter #CygnusCRS2NG24 #Falcon9

Copy Trajectory Message

🚀 SpaceX Rocket Launch Alert! 🚀

📅 SpaceX is scheduled to launch a Falcon 9 rocket from Florida as part of the Cygnus CRS-2 NG-24 mission.

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-cygnus-crs-2-ng-24

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #Florida #CapeCanaveral #KSC #KennedySpaceCenter #CygnusCRS2NG24 #Falcon9

Copy 24/1 Hour Message 🚀 In 24 hours, SpaceX is scheduled to launch a Falcon 9 rocket from Florida. 🕛 Tap for details.

🚀 SpaceX Rocket Launch Alert! 🚀

🕛 In 24 hours, SpaceX is scheduled to launch a Falcon 9 rocket from Florida as part of the Cygnus CRS-2 NG-24 mission.

Get the launch details, live video feed link, and viewing locations here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-cygnus-crs-2-ng-24

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #Florida #CapeCanaveral #KSC #KennedySpaceCenter #CygnusCRS2NG24 #Falcon9

Copy Live Video Feed Message 🚀 The SpaceX live video feed of the Falcon 9 rocket launch from Florida is about to start! 🎥 Tap to watch and get updates.

🚀 SpaceX Rocket Launch Live Video Feed! 🚀

🎥 The SpaceX live video feed of the Falcon 9 rocket launch from Florida is about to start!

Tune in and get launch updates here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-cygnus-crs-2-ng-24

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #Florida #CapeCanaveral #KSC #KennedySpaceCenter #CygnusCRS2NG24 #Falcon9

Copy Delay Message 🚀 The SpaceX Falcon 9 rocket launch from Florida has been delayed. 😞 Tap for updates.

🚀 SpaceX Rocket Launch Delayed! 🚀

😞 The SpaceX Falcon 9 rocket launch from Florida as part of the Cygnus CRS-2 NG-24 mission has been delayed.

Get updates here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-cygnus-crs-2-ng-24

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #Florida #CapeCanaveral #KSC #KennedySpaceCenter #CygnusCRS2NG24 #Falcon9

Copy Congratulations Message

🚀 Congrats to SpaceX for the launch of a Falcon 9 from Florida as part of the Cygnus CRS-2 NG-24 mission.

🎉 If you missed it, watch the replay here: https://www.spacelaunchschedule.com/launch/falcon-9-block-5-cygnus-crs-2-ng-24

#SpaceLaunchSchedule #SpaceMonkey #RocketMonkey #RocketLaunch #LaunchDay #SpaceExploration #SpaceX #Florida #CapeCanaveral #KSC #KennedySpaceCenter #CygnusCRS2NG24 #Falcon9

function copyToClipboard(event, element, feedbackId) { const textToCopy = element.getAttribute('data-copy-text'); // Decode HTML entities for proper line breaks const decodedText = textToCopy.replace(/ /g, '\n'); // Get click coordinates const clickX = event.clientX; const clickY = event.clientY; // Modern clipboard API if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(decodedText).then(function() { showCopyFeedback(clickX, clickY); }).catch(function(err) { console.error('Failed to copy text: ', err); fallbackCopyToClipboard(decodedText, clickX, clickY); }); } else { fallbackCopyToClipboard(decodedText, clickX, clickY); } } function fallbackCopyToClipboard(text, clickX, clickY) { const textArea = document.createElement('textarea'); textArea.value = text; textArea.style.position = 'fixed'; textArea.style.left = '-999999px'; document.body.appendChild(textArea); textArea.select(); try { document.execCommand('copy'); showCopyFeedback(clickX, clickY); } catch (err) { console.error('Fallback: Failed to copy text: ', err); } document.body.removeChild(textArea); } function showCopyFeedback(clickX, clickY) { // Create toast element const toastId = 'toast-' + Date.now(); const toastHTML = ` `; // Add toast to body document.body.insertAdjacentHTML('beforeend', toastHTML); // Get toast element and position it near click const toastElement = document.getElementById(toastId); // Position toast near click location with offset const offsetX = 10; // pixels to right of cursor const offsetY = -10; // pixels above cursor // Calculate position ensuring toast stays within viewport let toastX = clickX + offsetX; let toastY = clickY + offsetY; // Get viewport dimensions const viewportWidth = window.innerWidth; const viewportHeight = window.innerHeight; // Adjust if toast would go off screen (estimate toast width/height) const toastWidth = 200; // approximate const toastHeight = 50; // approximate if (toastX + toastWidth > viewportWidth) { toastX = clickX - toastWidth - offsetX; } if (toastY < 0) { toastY = clickY + offsetY + toastHeight; } toastElement.style.left = toastX + 'px'; toastElement.style.top = toastY + 'px'; // Initialize and show toast if (typeof jQuery !== 'undefined' && jQuery.fn.toast) { jQuery(toastElement).toast('show'); // Remove toast from DOM after it's hidden jQuery(toastElement).on('hidden.bs.toast', function() { toastElement.remove(); }); } else { // Fallback if Bootstrap JS is not available toastElement.style.display = 'block'; setTimeout(function() { toastElement.remove(); }, 2000); } }
guest
0 Comments
Inline Feedbacks
View all comments