javascript - Isotope Filtering not working in IE -
my website has isotope filtering function portfolio, working fine in ff , chrome not in ie9 below.. here script.
<script> jquery(document).ready(function () { var mycontainer = jquery('#projects'); mycontainer.isotope({ filter: '*', animationoptions: { duration: 4000, easing: 'liniar', queue: false, } }); jquery('#projects-filter a').click(function () { jquery('#projects-filter a.active').removeclass('active'); var selector = jquery(this).attr('data-filter'); mycontainer.isotope({ filter: selector }); jquery(this).addclass('active'); return false; }); }); </script>
Comments
Post a Comment