Free Shipping From 2 Shirts
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
1 / 11
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined
You may also like Don't Like These?
0% OFF

Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks, Cozy Soft Indoor Socks with Fluffy Sherpa Lined

$19.99
Color
Size
Qty 17 in stock
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);

Product Description

Slip into something more comfortable.

Chunky and funky, these stylish cable knit slipper socks with fleecy inner lining to keep your feet toes-ty warm.

Cushioned foot bed and Non-skid

Chunky cable knit fabrication

Fully sherpa lined for extra warm

Long length shoe socks with faux suede soles.

Giftable for Dad,Grandpa,Husband,Boyfriend or the loved ones.

Effortless & Oh-So Cozy

When your schedule calls for relaxation, you can count on this loungewear to take you from bed to the couch and back again in total comfort.

Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks

Lounging is as lounging does, and these men's shoe socks make it easy to dress for laid-back days.

When the temperature drops, kick back in comfort with these slipper socks featuring a cozy upper and skid-resistant sole

Made for those first early morning steps, these knit slipper socks will help tired toes wake up. They feature smooth suede soles for durability Cozy up on a chilly evening with a warm drink and this fuzzy socks to make sure your toes stay toasty.

Still looking for gift ideas for men?

Why not treat a loved one to these men's slipper socks!

A perfect gift idea for that tricky guy to buy for, that shows you put in thought and effort.

Novelty Holiday Slippers

Already got your Christmas PJs picked out?

Try on whimsical slippers to match from this quirky, cozy collection.

Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks

mens slipper socks

Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks

Men's Slipper Socks with Grippers

Putting them on, enjoy the amazing comfort of these slippers socks after a long day of work. Perfect for relaxing and lounging around the house day or night.

Warm & Toasty

Ultra-soft cable knit yarn. Fluffy sherpa lined, extra warmth and comfort.

Slippers Will Keep Your Feet Cozy

Soft & anti-skid sole. Non-skid treads and a thick Foam footbed.

Men's Slipper Socks, Winter Cable Knit Non-Skid Warm Slipper Socks

From the brand

-We can ship to all over the world
-Free shipping from 2 shirts

ESTIMATED DELIVERY TIME:

Delivery Time = Processing time + Shipping time

Processing Time:

3-7 working days

Shipping Time:

US: 8-15 days

Europe: 7-12 days

CA/AU: 7-12 days

MX: 8-15 days

Rest of the world: 10-20 days

If there is any problem with the item, please return the goods to us within 30 days of receiving your order.

All returns must be unworn and unopened, unwashed and undamaged, in their original condition with all original tags attached and/or in their original packaging which must also be undamaged in its original condition.

To start a return, you can contact us at support@joyfball.com. Items sent back to us without requesting returning will not be accepted.

You may also like Don't Like These?