top of page

Connect with Us

Contact Us via Email or Phone

We are committed to providing exceptional customer service. If you have any questions about our products or services, please contact us. Our team of experts is available to assist you and ensure you receive the best cooling system for your needs. You can reach us at 1-585-622-4955 or by emailing us at info@jfgtechnologies.com. We are always happy to help!

Address

Contact

Opening Hours

850 Saint Paul St. #26
Rochester, NY 14605
United States of America

Mon - Fri

10 am - 6 pm

Sat - Sun

Closed

Contact Us!

Please take a moment to fill out the form.

Thanks for submitting!

JFG Logo

850 Saint Paul St. #26

Rochester, NY 14605

United States of America

bottom of page
// Wait for the page to fully load document.addEventListener("DOMContentLoaded", function() { // Get the iframe containing your Wix website var iframe = document.querySelector("iframe"); // Ensure the iframe is found if (iframe) { // Get the document inside the iframe var iframeDocument = iframe.contentDocument || iframe.contentWindow.document; // Create a div element for the popup var popup = iframeDocument.createElement("div"); popup.textContent = "This is a test popup!"; popup.style.position = "fixed"; popup.style.top = "50%"; popup.style.left = "50%"; popup.style.transform = "translate(-50%, -50%)"; popup.style.backgroundColor = "white"; popup.style.padding = "20px"; popup.style.border = "2px solid black"; popup.style.borderRadius = "5px"; popup.style.zIndex = "9999"; // Append the popup element to the body of the document inside the iframe iframeDocument.body.appendChild(popup); } });