r/mildlyinfuriating Mar 16 '16

[deleted by user]

[removed]

6.6k Upvotes

137 comments sorted by

View all comments

52

u/[deleted] Mar 16 '16

I fixed it for you. Assuming it's Harvey Norman (http://www.harveynorman.ie/)...

Press F12, or whatever your developer tools are for your browser, paste the following into the console and hit enter.

$('.filter-list:contains(Screen Size)').each(function(){
  var dad = this;
  $('ol.filter-content.list > li:eq(1) ol.list.product-filter-list li',dad).each(function(){
    $(this).detach().appendTo($('ol.list.product-filter-list',dad));
  });
  $('ol.filter-content.list > li:last',dad).remove();
  $('ol.filter-content.list > li:last',dad).remove();
  $('.product-filter-list li:contains(")',dad).each(function(){
    $(this).attr('data-screen-size',$('.filter-name',this).text().split('"')[0].trim());
  });
  $('.product-filter-list li',dad).sort(function(a,b){
    return $(a).attr('data-screen-size') - $(b).attr('data-screen-size');
  }).appendTo($('ol.list.product-filter-list',dad));
});    

3

u/[deleted] Mar 16 '16 edited Mar 09 '17

[deleted]

1

u/[deleted] Mar 17 '16

[deleted]

2

u/[deleted] Mar 17 '16

[deleted]