www.kertihobbi.hu Open in urlscan Pro
185.187.73.58  Public Scan

Submitted URL: https://gaz-grill.hu/
Effective URL: https://www.kertihobbi.hu/grill/gaz-grillek
Submission: On May 20 via api from RU — Scanned from DE

Form analysis 6 forms found in the DOM

Name: form_include_search2GET https://www.kertihobbi.hu/shop_search.php

<form name="form_include_search2" id="form_include_search2" action="https://www.kertihobbi.hu/shop_search.php" method="get">
  <div class="search-box__form-inner d-flex flex-column">
    <div class="form-group box-search-group mb-0 js-search-smart-insert-after-here">
      <input data-stay-visible-breakpoint="1280" id="box_search_input2" class="search-box__input ac_input js-search-input form-control" name="search" pattern=".{3,100}" aria-label="Keresés" title="Hosszabb kereső kifejezést írjon be!"
        placeholder="Keresés" type="search" maxlength="100" autocomplete="off" required="">
      <div class="search-box__search-btn-outer input-group-append" title="Keresés">
        <button class="btn search-box__search-btn" aria-label="Keresés">
          <span class="search-box__search-btn-icon icon--search"></span>
        </button>
      </div>
      <div class="search__loading">
        <div class="loading-spinner--small"></div>
      </div>
    </div>
    <div class="ac_results2" style="display: none;">
      <span class="ac_result__caret"></span>
    </div>
  </div>
</form>

<form id="product_filter_num_form_price">
  <div class="product_filter_num_inputs">
    <div class="row gutters-10">
      <div class="col-6 product_filter_num_from_col">
        <div class="input-group mb-0">
          <input class="form-control product_filter_price_input product_filter_num_from" type="number" value="72750" step="1" min="72750" max="590639" id="filter-number-from-price" aria-label="kezdete" placeholder="kezdete"
            data-slider-id="product_filter_num_price" required="">
        </div>
      </div>
      <div class="col-6">
        <div class="input-group mb-0">
          <input class="form-control product_filter_price_input product_filter_num_to" type="number" value="590640" step="1" min="72751" max="590640" id="filter-number-to-price" aria-label="vége" placeholder="vége"
            data-slider-id="product_filter_num_price" required="">
        </div>
      </div>
    </div>
    <script>
      function round(number, step) {
        let divided = 1 / step;
        return Math.round(number * divided) / divided;
      }

      function delay(callback, ms) {
        let timer = 0;
        return function() {
          let context = this,
            args = arguments;
          clearTimeout(timer);
          timer = setTimeout(function() {
            callback.apply(context, args);
          }, ms || 0);
        };
      }

      function filterNumInputChange(el) {
        let $currencyRate = 1;
        let $baseCurrencyLength = UNAS.shop.base_currency_length;
        let $thisGroup = el.closest('.product_filter_group');
        let $decimalLength = $thisGroup.data('decimal-length');
        if ($thisGroup.attr('data-id') === 'price') {
          $currencyRate = parseFloat(UNAS.shop.currency_rate);
          $decimalLength = money_len;
        }
        let $thisAktMinHidden = el.closest('.product_filter_group').find('.akt_min'); /* akt_min hidden input */
        let $thisAktMaxHidden = el.closest('.product_filter_group').find('.akt_max'); /* akt_max hidden input */
        let $thisAktMin = parseFloat($thisAktMinHidden.val()) * $currencyRate;
        let $thisAktMax = parseFloat($thisAktMaxHidden.val()) * $currencyRate;
        let $thisStep = parseFloat(el.attr('step'));
        let $thisMinVal = parseFloat(el.attr('min'));
        let $thisMaxVal = parseFloat(el.attr('max'));
        let $thisBelongSlider = $('#' + el.data('slider-id'));
        let $thisActVal = el.val();
        $thisActVal = parseFloat($thisActVal);
        $thisActVal = round($thisActVal, $thisStep);
        let $newTempMin = $thisMinVal;
        let $newTempMax = $thisMaxVal;
        /*FROM INPUT*/
        let reset = false;
        if (el.hasClass('product_filter_num_from')) {
          if ($thisActVal === '' || isNaN($thisActVal)) {
            $newTempMin = $thisMinVal;
            reset = true;
          } else if ($thisActVal >= $thisAktMax) {
            /* ha nagyobb a beírt min, mint az aktuális max, akkor legyen: akt max - step */
            $newTempMin = $thisAktMax - $thisStep;
          } else if ($thisActVal <= $thisMinVal) {
            $newTempMin = $thisMinVal;
            reset = true;
          } else {
            $newTempMin = $thisActVal;
          }
          el.val(number_format($newTempMin, $decimalLength, '.', ''));
          if (reset) {
            $thisAktMinHidden.val(el.closest('.product_filter_group').find('.base_min').val());
            $thisBelongSlider.slider("values", 0, el.closest('.product_filter_group').find('.base_min').val());
          } else {
            $thisAktMinHidden.val(number_format(($newTempMin / $currencyRate), $baseCurrencyLength, '.', ''));
            $thisBelongSlider.slider("values", 0, number_format(($newTempMin / $currencyRate), $baseCurrencyLength, '.', ''));
          }
        } else {
          /*TO INPUT*/
          if ($thisActVal === '' || isNaN($thisActVal)) {
            $newTempMax = $thisMaxVal;
            reset = true;
          } else if ($thisActVal <= $thisAktMin) {
            /* ha kisebb a beírt max, mint az aktuális min, akkor akt min + step */
            $newTempMax = $thisAktMin + $thisStep;
          } else if ($thisActVal >= $thisMaxVal) {
            reset = true;
            $newTempMax = $thisMaxVal;
          } else {
            $newTempMax = $thisActVal;
          }
          el.val(number_format($newTempMax, $decimalLength, '.', ''));
          if (reset) {
            $thisAktMaxHidden.val(el.closest('.product_filter_group').find('.base_max').val());
            $thisBelongSlider.slider("values", 1, el.closest('.product_filter_group').find('.base_max').val());
          } else {
            $thisAktMaxHidden.val(number_format(($newTempMax / $currencyRate), $baseCurrencyLength, '.', ''));
            $thisBelongSlider.slider("values", 1, number_format(($newTempMax / $currencyRate), $baseCurrencyLength, '.', ''));
          }
        }
      }
      $(document).ready(function() {
        let productFilterNumInput = $(".product_filter_num_inputs input");
        productFilterNumInput.on('click', function() {
          let $this = $(this);
          $this.select();
        });
        /* karakterszám korlátozás a . után decimal-lenght attribútum alapján */
        productFilterNumInput.on('input', function() {
          let $this = $(this);
          let $thisGroup = $this.closest('.product_filter_group');
          let $thisMaxVal = $this.attr('max');
          let regex;
          let dec = $thisGroup.data("decimal-length");
          if (dec !== undefined) {
            /*let regex = new RegExp("\\d{1}(\\,\\d{" + dec + "})\\d+", "g");*/
            regex = new RegExp("(\\.\\d{" + dec + "})\\d+", "g");
          } else {
            regex = new RegExp("(\\d{" + $thisMaxVal.length + "})\\d+", "g");
          }
          $this.val($this.val().replace(regex, '$1'));
        });
        productFilterNumInput.on('keyup', delay(function() {
          let $this = $(this);
          filterNumInputChange($this);
        }, 1000));
      });
    </script>
  </div>
</form>

Name: form_art_order1POST

<form name="form_art_order1" method="post">
  <input name="art_order_sent" value="ok" type="hidden">
  <div class="order__select-outer form-select-group" title="Sorrend">
    <select name="new_art_order" onchange="document.form_art_order1.submit();" class="form-control" aria-label="Sorrend" id="new_art_order_top">
      <option value="popular" selected="selected">Népszerűség szerint</option>
      <option value="name">Név szerint (A-Z)</option>
      <option value="name_desc">Név szerint (Z-A)</option>
      <option value="price">Ár szerint növekvő</option>
      <option value="price_desc">Ár szerint csökkenő</option>
      <option value="time_desc">Felvitel szerint (legutolsó az első)</option>
      <option value="time">Felvitel szerint (legkorábbi az első)</option>
    </select>
  </div>
</form>

Name: form_art_order2POST

<form name="form_art_order2" method="post">
  <input name="art_order_sent" value="ok" type="hidden">
  <div class="order__select-outer form-select-group" title="Sorrend">
    <select name="new_art_order" onchange="document.form_art_order2.submit();" class=" form-control" aria-label="Sorrend" id="new_art_order_bottom">
      <option value="popular" selected="selected">Népszerűség szerint</option>
      <option value="name">Név szerint (A-Z)</option>
      <option value="name_desc">Név szerint (Z-A)</option>
      <option value="price">Ár szerint növekvő</option>
      <option value="price_desc">Ár szerint csökkenő</option>
      <option value="time_desc">Felvitel szerint (legutolsó az első)</option>
      <option value="time">Felvitel szerint (legkorábbi az első)</option>
    </select>
  </div>
</form>

Name: form_include_searchGET https://www.kertihobbi.hu/shop_search.php

<form name="form_include_search" id="form_include_search" action="https://www.kertihobbi.hu/shop_search.php" method="get">
  <div class="search-box__form-inner d-flex flex-column">
    <div class="form-group box-search-group mb-0 js-search-smart-insert-after-here">
      <input data-stay-visible-breakpoint="1280" id="box_search_input" class="search-box__input ac_input js-search-input form-control" name="search" pattern=".{3,100}" aria-label="Keresés" title="Hosszabb kereső kifejezést írjon be!"
        placeholder="Keresés" type="search" maxlength="100" autocomplete="off" required="">
      <div class="search-box__search-btn-outer input-group-append" title="Keresés">
        <button class="btn search-box__search-btn" aria-label="Keresés">
          <span class="search-box__search-btn-icon icon--search"></span>
        </button>
      </div>
      <div class="search__loading">
        <div class="loading-spinner--small"></div>
      </div>
    </div>
    <div class="ac_results" style="display: none;">
      <span class="ac_result__caret"></span>
    </div>
  </div>
</form>

Name: form_loginPOST https://www.kertihobbi.hu/shop_logincheck.php

<form name="form_login" action="https://www.kertihobbi.hu/shop_logincheck.php" method="post"><input name="file_back" type="hidden" value="/grill/gaz-grillek"><input type="hidden" name="login_redir" value="" id="login_redir">
  <div class="login-box__form-inner">
    <div class="form-group login-box__input-field">
      <label for="shop_user_login">E-mail</label>
      <input name="shop_user_login" id="shop_user_login" aria-label="E-mail" placeholder="E-mail" type="text" maxlength="100" class="form-control" spellcheck="false" autocomplete="email" autocapitalize="off">
    </div>
    <div class="form-group login-box__input-field mb-4">
      <label for="shop_pass_login">Jelszó</label>
      <input name="shop_pass_login" id="shop_pass_login" aria-label="Jelszó" placeholder="Jelszó" type="password" maxlength="100" class="form-control" spellcheck="false" autocomplete="current-password" autocapitalize="off">
    </div>
    <div class="login-box__btns-wrap form-group form-group-lg">
      <button type="submit" class="login-box__login-btn btn btn-primary">Belép</button>
      <a class="login-box__reg-btn btn btn-primary icon--a-pen-line" href="https://www.kertihobbi.hu/shop_reg.php?no_reg=0">Regisztráció</a>
    </div>
    <div class="login-box__remind-btn-wrap form-group">
      <button type="button" class="login-box__remind-btn btn btn-text2" onclick="handleCloseDropdowns(); overlay_login_remind();">Elfelejtettem a jelszavamat</button>
    </div>
  </div>
</form>

Text Content

Megbízható gyártóktól származó minőségi termékek, szakértő munkatársak,
barátságos és segítőkész ügyfélszolgálat. 

Kérdése van? +36301440161

Kategóriák
Kategóriák


Kérdése van? +36301440161

Keresés

Profil Kosár 0
 * Kategóriák
    * GRILL
      
    * HÁZTARTÁS
      
    * KERT
      
    * KERTI TÁROLÓK
      
    * WELLNESS
      
    * KIÁRUSÍTÁS

 * Termékeink
 * Blog
 * Letölthető katalógusok

Szűrés
Szűrés

Mutasd a találatokat

Ár(Ft)
72 750 Ft - 590 640 Ft

Gyártó
Hecht
G21
ACTIVA-Germany
Raktárkészlet
Raktáron
Nincs raktáron
Termék státusza
Új termék
Akciók
Raktáron
Mutasd a találatokat
Szűrés törlése
 1. 
 2. GRILL ÉS KERTI TŰZRAKÓ

 1. 
 2. GRILL
 3. GRILL ÉS KERTI TŰZRAKÓ
 4. GÁZGRILL


GÁZGRILL

18 termék 1 18
Népszerűség szerint Név szerint (A-Z) Név szerint (Z-A) Ár szerint növekvő Ár
szerint csökkenő Felvitel szerint (legutolsó az első) Felvitel szerint
(legkorábbi az első)
Raktáron



G21 ARGENTINA BBQ PREMIUM LINE GÁZGRILL, 5 ÉGŐFEJ + AJÁNDÉK NYOMÁSCSÖKKENTŐ

Raktáron
3
219 900 Ft 
213 310 Ft

Raktáron



HECHT ADELLE 5 PROFI GÁZOS KERTI GRILL, 4 FŐÉGŐ, 1 OLDALSÓ ÉGŐ

Raktáron
3
159 990 Ft 
155 200 Ft

Raktáron



G21 NEVADA BBQ KONYHA PREMIUM LINE 7 ÉGŐFEJ+ AJÁNDÉK NYOMÁSCSÖKKENTŐ

Raktáron
3
608 900 Ft 
590 640 Ft

Raktáron



G21 ARIZONA BBQ PREMIUM LINE GÁZGRILL, 6 ÉGŐFEJ + AJÁNDÉK NYOMÁSCSÖKKENTŐ

Raktáron
3
524 900 Ft 
509 160 Ft



ACTIVA COMBO III. GÁZ ÉS FASZENES GRILLSÜTŐ 2IN1

Raktáron
3
164 990 Ft 
160 040 Ft

Külső raktáron



ACTIVA NEBRASKA GÁZGRILL OLDALSÓ GÁZÉGŐVEL

Raktáron
3
144 990 Ft 
140 650 Ft



ACTIVA NEVADA GÁZGRILL OLDALSÓ GÁZÉGŐVEL

Raktáron
3
160 990 Ft 
156 160 Ft

Raktáron



HECHT FIRE 2 GÁZOS KERTI GRILL, 2 GÁZÉGŐVEL

Raktáron
3
74 990 Ft 
72 750 Ft



ACTIVA FLORIDA GÁZGRILL OLDALSÓ GÁZÉGŐVEL

Raktáron
3
229 990 Ft 
223 090 Ft



ACTIVA HALIFAX LÁVAKÖVES GÁZGRILL OLDALSÓ GÁZÉGŐVEL

Raktáron
3
81 990 Ft 
79 540 Ft



HECHT FIREWOOD 3 GÁZOS KERTI GRILL, 3 ÉGŐFEJES, FA POLCOS

Raktáron
3
119 990 Ft 
116 400 Ft



ACTIVA CALIFORNIA GÁZGRILL OLDALSÓ GÁZÉGŐVEL

Raktáron
3
106 990 Ft 
103 790 Ft

Raktáron



G21 COSTARICA BBQ PREMIUM LINE GÁZGRILL, 5 ÉGŐFEJ + AJÁNDÉK NYOMÁSCSÖKKENTŐ

Raktáron
1
270 900 Ft 
267 990 Ft

Raktáron



G21 MEXICO BBQ PREMIUM LINE GÁZGRILL, 7 ÉGŐFEJ + NYOMÁSCSÖKKENTŐ

Nincs raktáron

Raktáron



G21 FLORIDA BBQ PREMIUM LINE, 7 ÉGŐFEJ + AJÁNDÉK NYOMÁSCSÖKKENTŐ

Nincs raktáron

Rendelésre



ACTIVA MONTANA III. GÁZGRILL OLDALSÓ GÁZÉGŐVEL

Nincs raktáron

Raktáron



G21 CALIFORNIA BBQ PREMIUM LINE GRILL, 4 ÉGŐFEJ + AJÁNDÉK NYOMÁSCSÖKKENTŐ

Raktáron
151 900 Ft

Raktáron



G21 OKLAHOMA BBQ PREMIUM LINE GÁZGRILL, 3 ÉGŐFEJ + AJÁNDÉK NYOMÁSCSÖKKENTŐ

Raktáron
117 900 Ft

18 termék 1 18
Népszerűség szerint Név szerint (A-Z) Név szerint (Z-A) Ár szerint növekvő Ár
szerint csökkenő Felvitel szerint (legutolsó az első) Felvitel szerint
(legkorábbi az első)
Vásárlói fiók
 * Belépés
 * Regisztráció
 * Profilom
 * Kosár
 * Kedvenceim

Információk
 * Általános szerződési feltételek
 * Adatkezelési tájékoztató
 * Fizetés
 * Szállítás
 * Elérhetőségek

Kerl Hungária Kft.
 * 1172 Budapest , Ferihegyi út 13.
 * +36301440161
 * bolt@kertihobbi.hu

 * facebook

 * 

Iratkozzon fel hírlevelünkre!

HÍRLEVÉL - NE MARADJ LE! - AKCIÓK, ÚJDONSÁGOK

Íratkozz fel hírlevelünkre, és első kézből értesülhetsz akciós és új
termékeinkről!

Feliratkozás
Árukereső, a hiteles vásárlási kalauz







 * GRILL
   
 * HÁZTARTÁS
   
 * KERT
   
 * KERTI TÁROLÓK
   
 * WELLNESS
   
 * KIÁRUSÍTÁS


 * Termékeink
 * Blog
 * Letölthető katalógusok


Belépés
E-mail
Jelszó
Belép Regisztráció
Elfelejtettem a jelszavamat

Kategóriák
Szűrés
Profil Kosár
0
Adatkezelési beállítások
Weboldalunk az alapvető működéshez szükséges cookie-kat használ. Szélesebb körű
funkcionalitáshoz (marketing, statisztika, személyre szabás) egyéb cookie-kat
engedélyezhet. Részletesebb információkat az Adatkezelési tájékoztatóban talál.
Nem engedélyezem Engedélyezem

163 vélemény alapján

91.41%
a vásárlók közül ajánlaná ismerősének ezt a boltot.


Elégedettség a bolttal:

Szállítási idő:

A bolt áttekinthetősége:

Ügyfélszolgálat/kommunikáció:


A(z) kertihobbi.hu részt vesz az Árukereső Megbízható Bolt Programjában.
© 2004-2024 arukereso.hu Minden jog fenntartva.