poggers.com Open in urlscan Pro
23.227.38.32  Public Scan

Submitted URL: http://poggers.com/
Effective URL: https://poggers.com/
Submission: On August 31 via api from US — Scanned from CA

Form analysis 5 forms found in the DOM

GET /search

<form class="
      live-search-form
      form-fields-inline
      
    " action="/search" method="get" role="search" aria-label="Product" data-live-search-form="">
  <input type="hidden" name="type" value="product">
  <div class="form-field no-label"><input class="form-field-input live-search-form-field myserc" type="text" name="q" aria-label="Search" placeholder="Search for a product" autocomplete="on" id="sanitized-search-query" data-live-search-input="">
    <!-- Optional: Display the formatted input -->
    <div id="display-formatted-input"></div>
    <script>
      document.addEventListener('DOMContentLoaded', function() {
        var inputField = document.querySelector('.live-search-form-field');
        var hiddenField = document.getElementById('sanitized-search-query');
        inputField.addEventListener('input', function() {
          var inputValue = this.value;
          // Update the display with the formatted input value (preserve spaces and special characters)
          document.getElementById('display-formatted-input').textContent = inputValue;
          // Sanitize the input for backend submission
          var sanitizedValue = sanitizeInputForBackend(inputValue);
          // Set the sanitized value to the hidden field for backend processing
          hiddenField.value = sanitizedValue;
          // Optional: Trigger fetching search results based on the sanitized value
          fetchSearchResults(sanitizedValue);
        });

        function sanitizeInputForBackend(input) {
          // Remove specific characters '-', '*', '(', ')'
          var sanitized = input.replace(/[-()*]/g, '');
          // Replace consecutive spaces with a single space
          sanitized = sanitized.replace(/\s+/g, ' ');
          // Convert to lowercase
          sanitized = sanitized.toLowerCase();
          return sanitized;
        }

        function fetchSearchResults(sanitizedQuery) {
          // AJAX request to fetch search results using sanitized query
          // Example:
          /*
          fetch('/your-backend-search-endpoint', {
            method: 'POST',
            body: JSON.stringify({ query: sanitizedQuery }),
            headers: {
              'Content-Type': 'application/json'
            },
          })
          .then(response => response.json())
          .then(data => {
            console.log('Received search results:', data);
            // Update UI with backend search results if needed
          })
          .catch(error => {
            console.error('Error fetching search results:', error);
          });
          */
        }
      });
    </script>
    <button class="live-search-takeover-cancel" type="button" data-live-search-takeover-cancel=""> Cancel </button>
    <button class="live-search-button mdc-ripple-surface mdc-ripple-upgraded" type="submit" aria-label="Search" data-live-search-submit="">
      <span class="search-icon search-icon--inactive">
        <svg aria-hidden="true" focusable="false" role="presentation" width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
          <ellipse cx="6.26465" cy="6.56316" rx="5.13965" ry="5.27349" stroke="#9D9D9D" stroke-width="2.25"></ellipse>
          <path d="M10.0669 10.4645L15.125 15.6543" stroke="#9D9D9D" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"></path>
        </svg>
      </span>
      <span class="search-icon search-icon--active">
        <!-- Loading Animation -->
        <div class="loading-animation"></div>
      </span>
    </button>
  </div>
  <div class="search-flydown" data-live-search-flydown="">
    <!-- Placeholder items with loading animation -->
    <div class="search-flydown--placeholder" data-live-search-placeholder="">
      <div class="search-flydown--product-items">
        <div class="search-flydown--loading-item">
          <div class="loading-animation"></div>
        </div>
        <div class="search-flydown--loading-item">
          <div class="loading-animation"></div>
        </div>
        <div class="search-flydown--loading-item">
          <div class="loading-animation"></div>
        </div>
      </div>
    </div>
    <!-- Search Results Container -->
    <div class="search-flydown--results search-flydown--results--content-enabled" data-live-search-results=""></div>
    <!-- Quick Links Section -->
  </div>
</form>

POST /contact#contact_form

<form method="post" action="/contact#contact_form" accept-charset="UTF-8" class="contact-form" data-persist-bound="true"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
  <input type="hidden" name="contact[tags]" value="prospect, newsletter">
  <div class="form-fields-inline pxs-newsletter-form-fields">
    <div class="form-field newsletter-input">
      <input class="form-field-input form-field-text" name="contact[email]" id="newsletter_email" type="email" placeholder="Your email address goes here">
    </div>
    <div class="form-field newsletter-submit">
      <button class="button-primary mdc-ripple-surface mdc-ripple-upgraded" name="subscribe" type="submit"> Subscribe </button>
    </div>
  </div>
</form>

POST /contact#contact_form

<form method="post" action="/contact#contact_form" accept-charset="UTF-8" class="contact-form" data-persist-bound="true"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
  <input type="hidden" name="contact[tags]" value="prospect, newsletter">
  <div class="form-fields-inline pxs-newsletter-form-fields">
    <div class="form-field newsletter-input">
      <input class="form-field-input form-field-text" name="contact[email]" id="newsletter_email" type="email" placeholder="Your email address goes here">
    </div>
    <div class="form-field newsletter-submit">
      <button class="button-primary mdc-ripple-surface mdc-ripple-upgraded" name="subscribe" type="submit"> Subscribe </button>
    </div>
  </div>
</form>

POST /cart

<form action="/cart" method="post" aria-label="cart checkout">
  <button class="button-primary atc-button--checkout mdc-ripple-surface mdc-ripple-upgraded" type="submit" name="checkout">
    <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
      <path fill-rule="evenodd" clip-rule="evenodd"
        d="M2.5 11.1667C2.5 10.0622 3.39543 9.16675 4.5 9.16675H15.5C16.6046 9.16675 17.5 10.0622 17.5 11.1667V16.3334C17.5 17.438 16.6046 18.3334 15.5 18.3334H4.5C3.39543 18.3334 2.5 17.438 2.5 16.3334V11.1667Z" fill="currentColor"></path>
      <path d="M5.83337 9.16675V5.83341C5.83337 3.53223 7.69885 1.66675 10 1.66675C12.3012 1.66675 14.1667 3.53223 14.1667 5.83341V9.16675" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
    </svg>
    <span>Checkout</span>
  </button>
</form>

<form aria-live="polite" class="needsclick klaviyo-form klaviyo-form-version-cid_1 go417382439 kl-private-reset-css-Xuajs1" data-testid="klaviyo-form-WsCLAA" novalidate=""
  style="display: flex; flex-direction: row; box-sizing: border-box; width: 450px; min-width: 200px; max-width: 1000px; border-radius: 20px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 0); background-color: rgb(107, 93, 211); background-image: url(&quot;https://d3k81ch9hvuctc.cloudfront.net/company/Ra2m6J/images/abb34696-a0b9-429e-9982-f065e6a639fa.jpeg&quot;); background-repeat: no-repeat; background-size: cover; background-position: 100% 50%; padding: 20px 15px; flex: 1 1 0%;">
  <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: column; width: 100%; margin: 0px; padding: 0px; min-height: 500px; justify-content: center;">
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 10px 6px 0px 0px; position: relative; flex: 1 0 0px;">
        <div class="kl-private-reset-css-Xuajs1 go3176171171" id="rich-text-126926615" style="width: 100%;">
          <p style="text-align: center; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-weight: 400;"><span style="font-size: 60px;"><span
                style="color: #ffffff; font-family: Poppins-Klaviyo-Hosted, Arial, Helvetica Neue, Helvetica, sans-serif;"><strong>10% OFF</strong></span></span></p>
          <p style="text-align: center; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-weight: 400;"><span style="font-size: 60px;"><span
                style="color: #ffffff; font-family: Poppins-Klaviyo-Hosted, Arial, Helvetica Neue, Helvetica, sans-serif;"><strong>COUPON</strong></span></span></p>
          <p style="text-align: center; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-weight: 400;">&nbsp;</p>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 10px 6px; position: relative; flex: 1 0 0px;">
        <div class="kl-private-reset-css-Xuajs1 go3176171171" id="rich-text-126926616" style="width: 100%;">
          <div style="text-align: center;"><span style="font-family: Poppins-Klaviyo-Hosted, Arial, 'Helvetica Neue', Helvetica, sans-serif; font-weight: bold; font-style: normal; font-size: 22px; color: rgb(255, 255, 255);">Sign up for a <span
                style="font-weight: bold; text-decoration: none;">10% off</span> promo code on orders of 2 or more items.</span></div>
          <div>&nbsp;</div>
          <div>&nbsp;</div>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 10px 6px; position: relative; flex: 1 0 0px;">
        <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-grow: 1; flex-direction: column; align-self: flex-end;"><input id="first_name_126926617" class="needsclick go4184866937 kl-private-reset-css-Xuajs1" type="text"
            autocomplete="given-name" tabindex="0" placeholder="First Name" aria-label="First Name" aria-invalid="false" options="[object Object]"
            style="box-sizing: border-box; border-radius: 0px; padding: 0px 0px 0px 16px; height: 50px; text-align: left; color: rgb(0, 0, 0); font-family: Poppins-Klaviyo-Hosted, Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: 0px; background-color: rgba(255, 255, 255, 0); border: 1px solid rgb(255, 255, 255);">
          <div class="needsclick  kl-private-reset-css-Xuajs1" style="width: 100%; position: relative;"></div>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 10px 6px 0px; position: relative; flex: 1 0 0px;">
        <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-grow: 1; flex-direction: column; align-self: flex-end;"><input id="email_126926618" class="needsclick go4184866937 kl-private-reset-css-Xuajs1" type="email"
            autocomplete="email" name="email" tabindex="0" placeholder="Email" aria-label="Email" aria-invalid="false" options="[object Object]"
            style="box-sizing: border-box; border-radius: 0px; padding: 0px 0px 0px 16px; height: 50px; text-align: left; color: rgb(0, 0, 0); font-family: Poppins-Klaviyo-Hosted, Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: 0px; background-color: rgba(255, 255, 255, 0); border: 1px solid rgb(255, 255, 255);">
          <div class="needsclick  kl-private-reset-css-Xuajs1" style="width: 100%; position: relative;"></div>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1"
        style="display: flex; justify-content: flex-start; padding: 10px 6px; position: relative; background-color: rgba(255, 252, 252, 0); flex: 1 0 0px;"><button class="needsclick go2489234310 kl-private-reset-css-Xuajs1" type="button" tabindex="0"
          style="background: rgba(240, 44, 173, 0.8); border-radius: 2px; border-style: solid; border-color: rgb(255, 255, 255); border-width: 1px; color: rgb(255, 255, 255); font-family: Inter, Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 19px; font-weight: 700; letter-spacing: 0px; line-height: 1; white-space: normal; padding-top: 0px; padding-bottom: 0px; text-align: center; word-break: break-word; align-self: flex-end; cursor: pointer; pointer-events: auto; height: 50px; width: 100%;">Submit
          for Code (On Next Page)</button></div>
    </div>
  </div><input type="submit" tabindex="-1" value="Submit" style="display: none;">
</form>

Text Content

Skip to content

FREE SHIPPING ON ORDERS $65+
Account Login Create Account Order Support Wishlist
 * Account Login
 * Create Account
 * Order Support
 * Wishlist


Menu

Cancel


 * 
 * 
 * View cart

Login / Register
 * Toys & Games
   Toys & Games
    * Collectible Card Games
      Collectible Card Games
      * Magic the Gathering
      * Yugioh
      * Pokemon
      * Dragon Ball Super
      * Miscellaneous Cards
    * Game Accessories
      Game Accessories
      * Dice
      * Binders
      * Deck Boxes
      * Sleeves
      * Playmats
    * Figures & Statues
      Figures & Statues
      * Movies & TV - Figures & Statues
      * Anime Figures & Statues
      * Video Game Figures
      * Comic Book Figures
      * Misc Figures
    * Building Block Toys
    * Plushes & Plushies
    * Board Games
    * Miscellaneous

 * Video Games
   Video Games
    * Nintendo Video Games
      Nintendo Video Games
      * Nintendo Switch
      * Nintendo 3DS
      * Nintendo Wii
      * Nintendo DS
      * Game Boy Advance
    * Xbox Video Games
      Xbox Video Games
      * Xbox Series X|S
      * Xbox One
      * Xbox 360
    * PlayStation Video Games
      PlayStation Video Games
      * PlayStation 2
      * PlayStation 3
      * PlayStation 4
      * PlayStation 5
      * PlayStation Portable
    * Retro Games
    * All Video Games
   
   
 * Movies, TV & Books
   Movies, TV & Books
    * Anime Blu-ray & DVDs
      Japanese anime movies & shows on Blu-ray
    * Comics
      Popular comic books from from Marvel and more
    * Movie Soundtracks
      Soundtracks from popular movies
    * Japanese Soundtracks
      Soundtracks for japanese anime series and movies
    * Video Game Music
      Video game soundtracks & music
    * Manga
      Popular manga books and comics
    * All Movies, TV and Books

 * Clothing & Gear
   Clothing & Gear
    * Clothing Gaming and anime apparel for fashionable nerds
    * Backpacks & Bags Stylish and trendy gaming and anime themed bags
    * Gear Functional gaming and anime themed accessories
    * Shop All Clothing & Gear
      Clothing, Bags, Gear & More
      All Clothing & Gear

 * Electronics
   Electronics
    * Consoles
      Playstation, Xbox, and Nintendo consoles
    * Controllers
      Controllers for Playstation, Nintendo, and Xbox
    * Headphones
      Multipurpose headphones and gaming headsets.
    * Computer Accessories
      Gadgets and accessories for your gaming PC
      * Mouse Pads
    * Shop All Electronics
      Headphones, Controllers, Consoles & Accessories
      All Electronics

 * Gifts & Accessories
   Gifts & Accessories
    * Anime Gift Sets Gaming and anime themed keychains
    * Keychains Nerdy mugs for all types of beverages
    * Mugs Random products that make great gifts
    * Miscellaneous Miscellaneous Gifts and Accessories
    * Shop All Gifts & Accessories
      Gifts, Keychains, Mugs, and Miscellaneous Accessories
      All Gifts & Accessories

 * Type
   Type
    * Anime
      * Anime Action Figures & Statues
      * Anime Mouse Pads
      * Anime Blu-ray & DVDs
      * Anime Gift Sets
      * Anime Plushes & Plushies
      * Anime Socks
      * Anime Hats
      * Anime - Posters & Wall Art & Prints
      * Anime - Pins & Badges
      * Anime - Keychains
    * Movies & TV
      * Movies & TV Hats
      * Movies & TV - Action Figures & Statues
      * Movies & TV - Socks
      * Movies & TV - Keychains
    * Video Game
      * Video Game Action Figures & Statues
      * Video Game Socks
      * Video Game Music
      * Video Game Hats
      * Video Game - Posters & Wall Art & Prints
      * Video Game - Posters & Wall Art & Prints
      * Video Game Gift Sets
      * Video Game - Keychains

 * Fandoms
    * Magic: The Gathering
    * Dragon Ball
    * Disney
    * Marvel
    * Pokémon
    * marvel
    * Star Wars
    * Yu-Gi-Oh Trading Card Game
    * naruto
    * Demon Slayer
    * Harry Potter
    * One Piece
    * My Hero Academia
    * Super Mario
    * The Lord of the Rings
    * DC Comics
    * Naruto Shippuden
    * Batman
    * Monopoly
    * Avengers
   
   Shop All fandoms
 * Manufacturers
    * LEGO
    * Bioworld
    * Wizards of the Coast
    * McFarlane Toys
    * Banpresto
    * ABYstyle
    * Kotobukiya
    * Eaglemoss Collections
    * Great Eastern Entertainment
    * The Pokémon Company International
    * Weta Workshop
    * Konami
    * Mega Bloks
    * Japanime Games
    * JINX
   
   Shop All Manufacturers
 * New Arrivals
 * Sale

 * 
 * 
 * View cart

Close
 * Toys & Games
   Toys & Games
    * Collectible Card Games
      Collectible Card Games
      * Magic the Gathering
      * Yugioh
      * Pokemon
      * Dragon Ball Super
      * Miscellaneous Cards
    * Game Accessories
      Game Accessories
      * Dice
      * Binders
      * Deck Boxes
      * Sleeves
      * Playmats
    * Figures & Statues
      Figures & Statues
      * Movies & TV - Figures & Statues
      * Anime Figures & Statues
      * Video Game Figures
      * Comic Book Figures
      * Misc Figures
    * Building Block Toys
    * Plushes & Plushies
    * Board Games
    * Miscellaneous

 * Video Games
   Video Games
    * Nintendo Video Games
      Nintendo Video Games
      * Nintendo Switch
      * Nintendo 3DS
      * Nintendo Wii
      * Nintendo DS
      * Game Boy Advance
    * Xbox Video Games
      Xbox Video Games
      * Xbox Series X|S
      * Xbox One
      * Xbox 360
    * PlayStation Video Games
      PlayStation Video Games
      * PlayStation 2
      * PlayStation 3
      * PlayStation 4
      * PlayStation 5
      * PlayStation Portable
    * Retro Games
    * All Video Games

 * Movies, TV & Books
   Movies, TV & Books
   * Anime Blu-ray & DVDs
   * Comics
   * Movie Soundtracks
   * Japanese Soundtracks
   * Video Game Music
   * Manga
   * All Movies, TV and Books
 * Clothing & Gear
   Clothing & Gear
   * Clothing
   * Backpacks & Bags
   * Gear
   * All Clothing & Gear
 * Electronics
   Electronics
   * Consoles
   * Controllers
   * Headphones
   * Computer Accessories
     Computer Accessories
     * Mouse Pads
   * All Electronics
 * Gifts & Accessories
   Gifts & Accessories
   * Anime Gift Sets
   * Keychains
   * Mugs
   * Miscellaneous
   * All Gifts & Accessories
 * Type
   Type
   * Anime
     Anime
     * Anime Action Figures & Statues
     * Anime Mouse Pads
     * Anime Blu-ray & DVDs
     * Anime Gift Sets
     * Anime Plushes & Plushies
     * Anime Socks
     * Anime Hats
     * Anime - Posters & Wall Art & Prints
     * Anime - Pins & Badges
     * Anime - Keychains
   * Movies & TV
     Movies & TV
     * Movies & TV Hats
     * Movies & TV - Action Figures & Statues
     * Movies & TV - Socks
     * Movies & TV - Keychains
   * Video Game
     Video Game
     * Video Game Action Figures & Statues
     * Video Game Socks
     * Video Game Music
     * Video Game Hats
     * Video Game - Posters & Wall Art & Prints
     * Video Game - Posters & Wall Art & Prints
     * Video Game Gift Sets
     * Video Game - Keychains
 * Fandoms
   Fandoms
   * Magic: The Gathering
   * Dragon Ball
   * Disney
   * Marvel
   * Pokémon
   * marvel
   * Star Wars
   * Yu-Gi-Oh Trading Card Game
   * naruto
   * Demon Slayer
   * Harry Potter
   * One Piece
   * My Hero Academia
   * Super Mario
   * The Lord of the Rings
   * DC Comics
   * Naruto Shippuden
   * Batman
   * Monopoly
   * Avengers
 * Manufacturers
   Manufacturers
   * LEGO
   * Bioworld
   * Wizards of the Coast
   * McFarlane Toys
   * Banpresto
   * ABYstyle
   * Kotobukiya
   * Eaglemoss Collections
   * Great Eastern Entertainment
   * The Pokémon Company International
   * Weta Workshop
   * Konami
   * Mega Bloks
   * Japanime Games
   * JINX
 * New Arrivals
 * Sale

 * Account Login
 * Create Account
 * Order Support
 * Wishlist







 * SHOP NINTENDO SWITCH


 * SHOP CLOTHING


 * SHOP ANIME FIGURES


 * SHOP PLUSHIES


 * SHOP BACKPACKS


 * SHOP BOARD GAMES


NEWSLETTER

Invite customers to join your mailing list.

Subscribe


NEWSLETTER

Sign up for our email list and you’ll be the first to hear about new releases
and special promotions at Poggers.

Subscribe


ABOUT POGGERS: THE BEST TOY STORE IN THE WORLD.

Poggers is a small family owned online-only retail store which sells toys, games
and collectibles for all ages. Poggers only sells officially licensed products
and merchandise such as: anime figures, video game merch and nerdy gifts. Check
out the shop daily for any sales, deals, discounts and promotions.

Shop from a variety of different collectible and licensed brands such as: LEGO,
Magic: The Gathering, Nintendo, Dragon Ball, Pokémon, Marvel, Star Wars, Harry
Potter, Naruto, Demon Slayer, My Hero Academia, Nintendo, PlayStation, Xbox,
Disney, One Piece, Super Mario, Zelda & more!


FOLLOW US

Find us on Discord Find us on Facebook Find us on Instagram Find us on Twitter
Find us on YouTube


CATEGORIES

 * New Arrivals
 * Games & Toys
 * Video Games
 * Movies, TV & Books
 * Clothing & Gear
 * Electronics
 * Gifts & Accessories


SUPPORT

 * Login
 * Register
 * Returns
 * FAQ


COMPANY

 * Blog
 * Contact
 * About Us


LEGAL

 * Return & Refund Policy
 * Privacy Policy
 * Terms of Service
 * Shipping Policy

© 2024 Poggers. All rights reserved.




ADDED TO YOUR CART:




** total_quantity ** | ** unit_price ** / ** unit_measure **
 * (-)

Cart subtotal
View cart ()
Checkout



← →








Close dialog

10% OFF

COUPON

 

Sign up for a 10% off promo code on orders of 2 or more items.
 
 


Submit for Code (On Next Page)


My Wishlist0