Does anyone know how to adjust this script to include an extra "sort" category??
Current -
http://shopfield.com.au/quicksand.html (working example)
Revised -
http://shopfield.com.au/quicksand-update.html (not working - most popular with sort addition)
I have also added the following script:
<
script>
$(document).ready(function(){
$("#content img").hover(
function() {
$(this).stop().animate({"opacity": "0.1"}, "medium");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
});
</script>
which enables the hover fade on the shop lists on page load but once a filter is applied it no longer works... any ideas here would be greatly appreciated :)