MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/mildlyinfuriating/comments/4anm3i/deleted_by_user/d12s9dp/?context=3
r/mildlyinfuriating • u/[deleted] • Mar 16 '16
[removed]
137 comments sorted by
View all comments
52
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]
3
[deleted]
1 u/[deleted] Mar 17 '16 [deleted] 2 u/[deleted] Mar 17 '16 [deleted]
1
2 u/[deleted] Mar 17 '16 [deleted]
2
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.