mkd-shop.ch Open in urlscan Pro
62.12.149.228  Public Scan

URL: https://mkd-shop.ch/
Submission: On November 21 via api from CH — Scanned from CH

Form analysis 2 forms found in the DOM

Name: quicksearchGET https://mkd-shop.ch/shop/USER_ARTIKEL_HANDLING_AUFRUF.php

<form class="suchformular" role="search" action="https://mkd-shop.ch/shop/USER_ARTIKEL_HANDLING_AUFRUF.php" method="GET" name="quicksearch" onsubmit="return chkQuicksearch('search-navbar-input')">
  <input type="hidden" name="darstellen" value="1">
  <input type="hidden" name="lowlimit" value="0">
  <input type="hidden" name="highlimit" value="-1">
  <div class="input-group">
    <input class="suchformular form-control" id="search-navbar-input" type="text" name="Suchstring" value="" placeholder="suchen" aria-autocomplete="list" autocomplete="off">
    <span class="input-group-btn">
      <button type="submit" class="btn btn-default"><span class="bi bi-search"></span></button>
    </span>
  </div>
  <div class="autocomplete-suggestions search-navbar-input"></div>
</form>

Name: quicksearchGET https://mkd-shop.ch/shop/USER_ARTIKEL_HANDLING_AUFRUF.php

<form class="suchformular" role="search" action="https://mkd-shop.ch/shop/USER_ARTIKEL_HANDLING_AUFRUF.php" method="get" name="quicksearch" onsubmit="return chkQuicksearch('quicksearch_suchstring')">
  <input type="hidden" name="darstellen" value="1">
  <input type="hidden" name="lowlimit" value="0">
  <input type="hidden" name="highlimit" value="-1">
  <!-- <input type="hidden" name="PEPPERSESS" value="1a001c6c7ebfbe49724e46129e96a821">
 -->
  <div class="input-group">
    <input class="suchformular form-control" type="text" name="Suchstring" id="quicksearch_suchstring" value="" placeholder="suchen" aria-autocomplete="list" size="12" maxlength="255" autocomplete="off">
    <span class="input-group-btn">
      <button type="submit" class="btn btn-default"><span class="bi bi-search"></span></button>
      <a style="display:none" accesskey="2" href="https://mkd-shop.ch/de/product-search/"></a>
    </span>
  </div>
  <script>
    var PepperShop = PepperShop || {};
    var last_category = '';
    PepperShop.populate_suchstring_quicksearch = function(input_element_id, value, label, category) {
      if (label != '' && label != 'alt-label') {
        // Deeplink mit ID-Angabe fuer Artikel oder Kategorie anspringen
        let labels_translated = {
          "artikel": "Artikel",
          "kategorien": "Kategorien",
          "seiten": "Seiten",
          "blog": "Blog"
        };
        switch (category.toLowerCase()) {
          case labels_translated.artikel.toLowerCase():
            window.location.href = "/index.php?Artikel_ID=" + value;
            break;
          case labels_translated.kategorien.toLowerCase():
            window.location.href = "/index.php?Kategorie_ID=" + value;
            break;
          case labels_translated.blog.toLowerCase():
          case labels_translated.seiten.toLowerCase():
            window.location.href = value;
            break;
          default:
            // Fallback, wenn keine bekannte Kategorie - einfach Suchresultate anzeigen (sollte nicht vorkommen)
            document.quicksearch.submit();
            break;
        }
      }
    };
    PepperShop.check_attribute_value = function(attr, default_value) {
      if (typeof attr !== typeof undefined && attr !== false) {
        return attr;
      }
      return default_value;
    };
    PepperShop.check_autocomplete = function(element) {
      var $appendTo = $(element).parents('form');
      if ($(element).hasClass('quick_search_artikel_nr')) $appendTo = $(element).parents('td');
      var input_element_id = $(element).attr('id');
      var position = "right";
      var position_of = "#" + input_element_id + '+ span';
      if ($(element).parents('.col_left').length > 0) {
        position = "left";
        position_of = "#" + input_element_id
      }
      if ($(element).parents('#search-navbar-collapse').length > 0) {
        position = "left";
        position_of = $("#" + input_element_id).parent();
      }
      var params = ["ajax_handler_id=artikelsuche_search_name", "feldname=" + PepperShop.check_attribute_value($(element).attr('data-feldname'), "Suchstring"), "alt_label=" + PepperShop.check_attribute_value($(element).attr('data-alt-label'),
        "Name"), "only-article=" + PepperShop.check_attribute_value($(element).attr('data-only-article'), "false")];
      if (typeof $(element).autoComplete !== 'function') {
        return;
      }
      $(element).autoComplete({
        appendTo: $appendTo,
        menuClass: input_element_id,
        minChars: 2,
        cache: false,
        delay: 300,
        source: function(term, response) {
          term = term.toLowerCase();
          var ajax_api = "https://mkd-shop.ch/shop/ajax_handler.php?" + params.join('&') + "&term=" + encodeURIComponent(term);
          var optionen = "";
          if (true) {
            optionen = "&" + $.param({
              image: true
            });
          }
          last_category = '';
          $('#' + input_element_id).addClass('autocomplete-loading-animation');
          $.getJSON(ajax_api + optionen + "#!nofollow", {}, function(result) {
            if (result) {
              response.apply(null, arguments);
            }
            $('#' + input_element_id).removeClass('autocomplete-loading-animation');
          });
        },
        renderItem: function(item, search) {
          var output = '';
          if (last_category !== item.category) {
            output += PepperShop.create_suggestion_category(last_category, item.category);
            last_category = item.category;
          }
          output += PepperShop.create_suggestion_entity(item);
          return output;
        },
        onSelect: function(event, term, item) {
          var item_information = item["0"].dataset;
          event.preventDefault();
          var label = (item_information.alt !== undefined) ? 'alt-label' : item_information.val;
          var value = item_information.value ? item_information.value : '';
          var category = item_information.cat;
          PepperShop.populate_suchstring_quicksearch(input_element_id, value, label, category);
        }
      });
    };
    PepperShop.create_suggestion_category = function(last_category, category) {
      var output = '';
      output += ((last_category !== '') ? '<hr class="autocomplete-suggestion dotted" />' : '');
      output += '<div class="autocomplete-suggestion autocomplete-suggestion-category">' + category + '</div>';
      return output;
    };
    PepperShop.create_suggestion_entity = function(item) {
      var output = '';
      if (item.alt_label !== undefined) {
        output += '<div id="suggestion-' + item.value + '" class="autocomplete-suggestion" ' + ' data-val="' + item.alt_label + '" data-alt="' + item.alt_label + '"';
      } else {
        output += '<div id="suggestion-' + item.value + '" class="autocomplete-suggestion" ' + ' data-val="' + item.label + '"';
      }
      output += ' data-cat="' + item.category + '"' + ' data-value="' + item.value + '">';
      if (item.image !== undefined) {
        output += '<img src="' + item.image + '"/>';
      }
      output += item.label + '</div>';
      return output;
    };
    // JQuery Autocomplete mit Suche ueber Artikelnamen
    document.addEventListener('DOMContentLoaded', () => {
      var suche_input_elements = '#quicksearch_suchstring, #search-navbar-input, .quick_search_artikel_nr';
      $(suche_input_elements).each(function(index, element) {
        PepperShop.check_autocomplete(element);
      });
    });
  </script>
  <div class="autocomplete-suggestions quicksearch_suchstring"></div>
</form>

Text Content

0
Menu


 * Hundefütterung  
 * Spiel & Spass  
 * Hundezubehör  
 * Transport  
 * Sport & Dienst  
 * Bekleidung  
 * Katzen  
 * Neuheiten
 * Aktionen
 * Über Uns
 * Newsletter

Newsletter


ARTIKEL HINZUGEFÜGT


ARTIKEL

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


Weiter einkaufen Warenkorb Kasse


IHR WARENKORB


IHR WARENKORB IST LEER!

0
 * Hundefütterung
    * Beerissimo Hausmarke
    * Frischfleisch
    * Futterergänzung
    * Gemüse & Früchte
    * Trockenfutter
    * Nassfutter
    * Trockenbarf
    * Belohnung
    * Kauartikel 100% aus der Schweiz
    * Kauartikel & Trockenfleisch

 * Spiel & Spass
    * Bälle
    * Beschäftigung
    * Welpen
    * Plüschiges
    * Wasserspiele
    * Dummys
    * Frisbees
    * Pfeife
    * Clicker

 * Hundezubehör
    * Führen
    * Pflege, Reinigung & Schutz
    * Zuhause
    * Praktisches
    * Maulkörbe
    * Bücher & DVD's
    * Geschenkideen

 * Transport
    * MKD's Aluboxen
    * Faltbare Transportboxen
    * Autozubehör

 * Sport & Dienst
    * Sport
    * Dienst

 * Bekleidung
    * Vierbeiner
    * Zweibeiner

 * Katzen
    * Katzenfütterung
    * Katzenpflege
    * Apotheke für Katzen
    * Katzenboutique

 * Neuheiten
 * Aktionen

 * Über Uns

 * 
 * 
 * 
 * 
 * 

 * 


🎉MKD'S 10% TAGE🎉





AM 29. UND 30. NOVEMBER STEHEN UNSERE 10%-TAGE VOR DER TÜR. PROFITIEREN SIE VON
10% RABATT AUF DAS GESAMTE SORTIMENT. FÜR DEN ONLINESHOP WIRD AM FREITAGMORGEN
EIN GUTSCHEINCODE AUF UNSERER HOMEPAGE, FACEBOOK UND INSTAGRAM AUFGESCHALTET.







BEI GRÖSSEREN FRISCHFLEISCHBESTELLUNGEN FREUEN WIR UNS ÜBER EINE VORANMELDUNG.


SO KÖNNEN WIR SICHERSTELLEN, DASS WIR DIE GEWÜNSCHTE WARE IN AUSREICHENDER MENGE
VORRÄTIG HABEN.





WIR FREUEN UNS AUF IHREN BESUCH!




BESTELLEN SIE BEQUEM ONLINE ODER KOMMEN SIE
BEI UNS IM MKD-SHOP IN BALLWIL VORBEI –
WIR FREUEN UNS AUF SIE!







KONG Schleckmatte mit Saugnäpfe
Rillen helfen bei der Reinigung von Zunge und Zähnen Zum ..
Lager

SFr. 11.90
KONG Scrumplez Koala
KONG Scrumplez begeistern Hunde mit Ohren, die sich durch ..
Lager

SFr. 18.90
Lamm mit Hirse und Gemüse Duo Rolls 2 x 400g
Das delikate Lammfleisch ist kraftvoll im Geschmack und gu..
Lager

SFr. 9.90

Kontakt



MKD-Shop GmbH
Sagistrasse 4
6275 Ballwil/Schweiz


info@mkd-shop.ch
+41 41 541 50 05


Kontaktformular
Impressum
AGB



Öffnungszeiten

Montag bis Freitag:
08.00 – 12.00
13.30 – 18.00

Samstag:
09.00 – 12.00


Fütterungsinformationen

Frischfutter
Nährwerttabelle
Futteretiketten
Gefährliche Produkte
E-Nummern