JBL PartyBox 1000 High Power 1100W Wireless Bluetooth Speaker

25 sold
$4,459.98
Accessories:  Wireless In-Ear Sport Headphones+Two mikes
Quantity

Description

Why so cheap?

These Bluetooth Wireless Party Speakerare backlogs of stock from distributors in our warehouse that have now reached their contract period and the products have not been disposed of in a timely manner. Our warehouse has the right to sell these stocks at a low price to reduce our losses.


Brand JBL
Item dimensions L x W x H 15.3 x 15.6 x 43 inches
Connectivity Technology AUX
Compatible Devices Guitar, Keyboard, Smartphone
Mounting Type Floor Standing

JBL PartyBox 1000?

Upgrade your party or get together with the?JBL PartyBox 1000 1100W Wireless Speaker. Like many wireless speakers, the PartyBox 1000 lets you stream your favorite tunes wirelessly via a compatible Bluetooth device, but the PartyBox 1000 goes much further, giving you a wide array of musical capabilities to enhance the festivities. An illuminated launchpad on top of the PartyBox 1000 gives aspiring DJs the ability to play drums, keyboard, or piano. It can even record creations and loop them on the fly.

Guitarists and karaoke lovers can plug in (optional) mics and guitars to dedicated inputs, and additional music/playlists can be played through the PartyBox via USB stick or a wired source. All of which is pumped through a compression driver, two 7" mid-range speakers, and one 12" down-firing woofer. No matter what kind of audio you and your guests supply to the party, it's enhanced with full panel LED lighting effects that you can control via the included Air Gesture wristband.

Air Gesture Wristband

Take control over the party atmosphere with the wireless Air Gesture wristband. Once paired to the PartyBox, you can clap your hands or shake your fist to play different sound effects. You can also rotate your hand in the air to change up the front panel light pattern.

Double Up Your Audio

If you want things loud or need to fill up a larger space, the PartyBox 1000 can be linked to an additional unit for twice the power. You can connect two PartyBox 1000 speakers via TWS (True Wireless Stereo) and Bluetooth technology, or you can hook them up with an (optional) RCA cable.

USB Charging

While plugged in, the USB Type-A port on the back of the PartyBox 1000 can power a compatible mobile device. It's an ideal feature for ensuring your playback device doesn't run out of battery, or to let your guests charge their smartphones.

Take The Party With You

Concealed wheels and an integrated handle makes it easy to transport the PartyBox 1000 to and around a location.

Bass Boost

Boost the low end of your music for a thumping sound to get your guests moving.

Features

  • Connect Wirelessly From Across The Room

    Pair this speaker with virtually any Bluetooth-enabled device, including phones, tablets and laptops.

  • 1100w Peak Power Handling

    Helps ensure rich, dynamic sound.

  • Light Shows

    The full panel lighting effect creates a captivating light show to astound your crowd with a lasting visual experience.

  • Integrated Dj Pad

    DJ launchpad allows you to play drums, keyboard and piano, record and loop on the fly.

  • 3-way Speaker System

    Sounds like 1 source rather than several separate sources.

  • Built-in Bluetooth

    Offers easy connectivity to your compatible device.

  • 6.3mm Jack

    Enables easy connection of a microphone.

  • 30hz - 20khz Frequency Response

    Ensures a wide range of accurately reproduced sound.

  • True Wireless Stereo Compatible

    Link up to two compatible party speakers with ease.

What's Included

  • Items Included:1 x JBL PartyBox 1000 High Power 1100W Wireless Bluetooth Speaker, 1 x JBL Wireless Two Microphone System with Dual-Channel Receiver, 1 x Auxiliary Cable, 1 x MicroFiber Cloth


OUR GUARANTEE

We strive to provide each customer with the highest standard of customer service to ensure you have a pleasant shopping experience. If you have any issues, inquiries or need assistance, please feel free to contact us directly.

OUR GUARANTEE

📦 Insured Worldwide Shipping: Each order includes real-time tracking details and insurance coverage in the unlikely event that a package gets lost or stolen in transit.

🔒 Safe & Secure Checkouts: We use state-of-the-art SSL Secure encryption to keep your personal and financial information 100% protected.

Extended Holiday Returns: Return eligible items to Amazon by 6/8/25

Returns & Refunds

Amazon wants you to be thrilled with your new purchase. However, if you need to return an item, we're here to help.

Eligible products at the Amazon Online that are received between November 8, 2024 and December 25, 2024, may be returned through January 8, 2025. Please note that all other terms and conditions provided in the Amazon Online Sales and Refunds Policy are still applicable with respect to such products purchased. All purchases made after December 25, 2024 are subject to the Standard Return Policy.

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.