Silver Heels

Filter by
Size
Color
Manufacturers
more... less
Fast delivery
Filter
Product added to wishlist

We use cookies and similar technologies to give you a personalised shopping experience, personalised advertising and to analyse our web traffic. Click ‘That’s ok’ if you’d like to allow all cookies. For more information, please see our Cookie Notice.

// requires jquery $(document).ready(function() { (function() { var showChar = 400; var ellipsestext = "..."; $(".truncate").each(function() { var content = $(this).html(); if (content.length > showChar) { var c = content.substr(0, showChar); var h = content; var html = '
' + c + '' + ellipsestext + '  more
'; $(this).html(html); } }); $(".moreless").click(function() { var thisEl = $(this); var cT = thisEl.closest(".truncate-text"); var tX = ".truncate-text"; if (thisEl.hasClass("less")) { cT.prev(tX).toggle(); cT.slideToggle(); } else { cT.toggle(); cT.next(tX).fadeToggle(); } return false; }); /* end iffe */ })(); /* end ready */ });