juice.world Open in urlscan Pro
2620:127:f00f:4::  Public Scan

Submitted URL: https://meetjuiceworld.com/
Effective URL: https://juice.world/en
Submission: On December 15 via api from US — Scanned from US

Form analysis 2 forms found in the DOM

POST /en/cart

<form class="form" id="cart-drawer-form" action="/en/cart" method="post">
  <cart-items id="cart-items" data-section="cart-drawer" data-empty="true">
    <div class="cart-empty flex flex-col justify-center items-center h-full js-cart-empty"><svg width="21" height="19" viewBox="0 0 21 19" fill="currentColor" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path d="M10 6.25V.5h1.5v5.75H21l-3.818 12H3.818L0 6.25h10Zm-7.949 1.5 2.864 9h11.17l2.864-9H2.05h.001Z"></path>
      </svg>
      <p>Your cart is empty</p><a class="btn btn--primary" href="/en/collections/all">Start shopping</a>
    </div>
    <p class="visually-hidden" id="cart-live-region-text" role="status" aria-live="polite"> Subtotal:€0 EUR </p>
    <p class="visually-hidden" id="cart-line-item-status" role="status" aria-live="polite" aria-hidden="true">Loading...</p>
    <div class="alert mt-6 bg-error-bg text-error-text" id="cart-errors" role="alert" hidden=""></div>
  </cart-items>
</form>

POST /en/localization

<form method="post" action="/en/localization" id="footer-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/en">
  <div class="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="DE">
      <country-selector><label class="label visually-hidden no-js-hidden" for="footer-localization-country-button">Country/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="footer-localization-country-button">
            <span class="text-start">Germany (EUR&nbsp;€)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="footer-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="footer-localization-country-opt-0" role="option" data-value="DE" aria-selected="true">
              <span class="pointer-events-none">Germany (EUR&nbsp;€)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
    <div class="localization__selector">
      <input type="hidden" name="locale_code" value="en">
      <custom-select id="footer-localization-language"><label class="label visually-hidden no-js-hidden" for="footer-localization-language-button">Language</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="footer-localization-language-button"
            style="--custom-select-button-width: 20px;">
            <span class="text-start">English</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="footer-localization-language-opt-4">
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-0" role="option" data-value="de">
              <span class="pointer-events-none">Deutsch</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-1" role="option" data-value="fr">
              <span class="pointer-events-none">Français</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-2" role="option" data-value="it">
              <span class="pointer-events-none">Italiano</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-3" role="option" data-value="es">
              <span class="pointer-events-none">Español</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-4" role="option" data-value="en" aria-selected="true">
              <span class="pointer-events-none">English</span>
            </li>
          </ul>
        </div>
      </custom-select>
    </div>
  </div>
  <script>
    customElements.whenDefined('custom-select').then(() => {
      if (!customElements.get('country-selector')) {
        class CountrySelector extends customElements.get('custom-select') {
          constructor() {
            super();
            this.loaded = false;
          }
          async showListbox() {
            if (this.loaded) {
              super.showListbox();
              return;
            }
            this.button.classList.add('is-loading');
            this.button.setAttribute('aria-disabled', 'true');
            try {
              const response = await fetch('?section_id=country-selector');
              if (!response.ok) throw new Error(response.status);
              const tmpl = document.createElement('template');
              tmpl.innerHTML = await response.text();
              const el = tmpl.content.querySelector('.custom-select__listbox');
              this.listbox.innerHTML = el.innerHTML;
              this.options = this.querySelectorAll('.custom-select__option');
              this.popular = this.querySelectorAll('[data-popular]');
              if (this.popular.length) {
                this.popular[this.popular.length - 1].closest('.custom-select__option').classList.add('custom-select__option--visual-group-end');
              }
              this.selectedOption = this.querySelector('[aria-selected="true"]');
              if (!this.selectedOption) {
                this.selectedOption = this.listbox.firstElementChild;
              }
              this.loaded = true;
            } catch {
              this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
            } finally {
              super.showListbox();
              this.button.classList.remove('is-loading');
              this.button.setAttribute('aria-disabled', 'false');
            }
          }
          setButtonWidth() {
            return;
          }
        }
        customElements.define('country-selector', CountrySelector);
      }
    });
  </script>
  <script>
    document.getElementById('footer-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

Text Content

Wir respektieren Ihre Privatsphäre
Diese Website verwendet Cookies, um Ihnen das beste Erlebnis zu
bieten.Datenschutz●Impressum
AblehnenAnnehmen
Skip to content

Menu
 * Products
    * Back
    * Products
    * JUICE BOOSTER 2
      22 kW – mobile, without connectivity
    * JUICE BOOSTER 3 air
      11 kW – mobile, smart, with load management
    * JUICE CHARGER me3
      11 or 22 kW – smart wallbox with load management
    * JUICE BOOSTER 2 pro
      22 kW – mobile, for professional use with additional vehicle-mounted
      adapters
    * JUICE DIRECTOR 2
      22 kW – mobile, fast charging (DC)
    * JUICE ULTRA 2
      up to 500 kW – stationary, fast charging (DC)
    * JUICE ULTRA 2 battery
      up to 210 kW – DC charging from battery to battery
   
   quiz
   
   Comparison
   
   Shop all products

 * solutions
    * Back
    * solutions
    * Private garages and carports
    * Hospitality, Retail, POI
    * OEM development and aftersales
    * Company parking spaces
    * Large parking areas and parking garages
    * workshops and car dealerships
    * Fleets
    * large real estate
    * Breakdown assistance
    * Freight forwarders
    * real estate tenants
    * Electricians
   
   quiz
   
   Comparison
   
   Shop all products

 * Selection help
    * Back
    * Selection help
    * quiz
    * Comparison

 * Support
    * Back
    * Support
    * Installation and documentation
    * repair
    * Contact

 * Over
    * Back
    * Over
    * News
    * Juice
    * Engineering
    * engagement
    * Jobs
    * Press

Log in Basket



SWISS CHARGING TECHNOLOGY FOR ELECTRIC VEHICLES

Safe, smart, global market leader




HELP WITH THE SELECTION


 * QUIZ
   
   Find out which charging station best suits your needs.
   
   Please select quiz


 * COMPARISON
   
   Compare the charging stations and find the optimal solution for you.
   
   Please select Comparison


ECHO FROM THE PRESS

 * "Swiss Army knife with app connection. The Juice Booster is one of the
   classics among mobile chargers for electric cars."

 * “Versatility is a key characteristic of the device.”

 * “Electromobility is spreading ever faster – also because companies like Juice
   are constantly improving the technical solutions that make electric mobility
   possible in the first place.”


HIGHEST QUALITY: HARDWARE AND SOFTWARE DEVELOPMENT FROM SWITZERLAND.

Learn more


NEWS

View all
 * Pressemeldungen
   
   
   JUICE CHARGER ME 3: NEW FUNCTIONS THANKS TO ITS OWN DASHBOARD AND APP ACCESS
   
   JUICE DASHBOARD – Intelligent management for the JUICE CHARGER me 3: Juice
   Technology presents a powerful platform for monitoring, controlling and
   managing charging stations. Whether entire systems or individual stations...

 * Branche
   
   
   HYDROGEN OR ELECTRIC CARS: WHICH IS THE BETTER CHOICE?
   
   Electric cars or hydrogen cars – which technology is ahead? Both are
   considered the key to climate-friendly mobility, but their advantages and
   disadvantages are the cause of heated debate. Is...

 * Pressemeldungen
   
   
   JUICE IS SIEBER'S OFFICIAL CHARGING PARTNER
   
   Leading Swiss logistics company relies on Juice solutions for future-proof
   charging infrastructure Juice Technology AG, a manufacturer of charging
   stations and software and a leader in mobile charging stations for...


Play



PERSONALIZE YOUR WALLBOX

Customize your wallbox with your company logo or a special picture of your loved
ones. Configure it easily and order directly from our online shop via Juice
Style.

Show selection


YOUR CART

Close

Your cart is empty

Start shopping

Subtotal:€0 EUR

Loading...







 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 


PRODUCTS

 * JUICE BOOSTER 3 air
 * JUICE BOOSTER 2
 * JUICE CHARGER me3
 * JUICE DIRECTOR 2
 * JUICE BOOSTER 2 pro
 * JUICE ULTRA 2
 * JUICE ULTRA 2 battery
 * Shop all products


SOLUTIONS

 * Private garages and carports
 * Company parking spaces
 * Fleets
 * Freight forwarders
 * Hospitality, Retail, POI
 * Large parking areas and parking garages
 * Property management
 * real estate tenants
 * OEM development and aftersales
 * workshops and car dealerships
 * Roadside assistance
 * Electricians


SELECTION HELP

 * quiz
 * Comparison


SUPPORT

 * Installation and documentation
 * repair
 * Contact


OVER

 * News
 * Juice
 * Engineering
 * engagement
 * Jobs
 * Press

 * Facebook
 * YouTube
 * Instagram
 * TikTok
 * Twitter
 * LinkedIn

Payment methods accepted
 * Apple Pay
 * Google Pay
 * Maestro
 * Mastercard
 * Shop Pay
 * Visa
 * Twint

Country/Region
Germany (EUR €)
 * Germany (EUR €)

Language
English
 * Deutsch
 * Français
 * Italiano
 * Español
 * English

--------------------------------------------------------------------------------

© 2024 Juice Technology AG.
 * imprint
 * delivery terms
 * Right of withdrawal
 * Conditions
 * data protection
 * Code of Conduct

Back


CHOOSE OPTIONS

Close
Close


Item added to your cart.

View cart


Leave a review after your purchase