Phat X offers the Inland Empire's best selection of camera gear, audio visual equipment, and podcasting equipment for rent.
Whether you're producing videos, recording podcasts, or managing live events, our top-quality equipment and expert support ensure your project runs smoothly and looks professional.
Convenient, reliable, and tailored to your needs-Phat X is your go-to source for all things AV and production in the Inland Empire.
const observer = new MutationObserver(function () {
const el = document.querySelector('header.mobile-false');
if (el) {
el.classList.remove('mobile-false');
observer.disconnect();
}
});
// Start observing after DOM is ready
document.addEventListener("DOMContentLoaded", function () {
observer.observe(document.body, {
childList: true,
subtree: true
});
// Run once immediately in case element already exists
const el = document.querySelector('header.mobile-false');
if (el) {
el.classList.remove('mobile-false');
observer.disconnect();
}
});