On my site, the boxes should disappear in the description. This works in every browser I tried except IE10. This is a WordPress site and I use nine plugins. I tried to disable all plugins, but freezes still do not work in IE10.
Below is the code that I use to hang:
jQuery(document).ready(function($){ $('.thumbnail').hover(function() { $('img', this).stop(true,true).fadeTo(100, 0.1); $('.description', this).stop(true,true).fadeIn(100); }, function() { $('img', this).stop(true,true).fadeTo(100, 1); $('.description', this).stop(true,true).fadeOut(100); }); });
Can someone help me identify the problem? If I left any important information, please let me know. Thanks.
Edit: all code to filter / freeze.
// Filter $(function() { var time_effect = 1000; var effect_name = 'easeOutQuart'; $('.all').quicksand( $('.everything article'), { duration: time_effect, attribute: 'data-id', easing: effect_name, adjustHeight: 'auto', useScaling: false }, function() { // callback function $("a.single-image").fancybox({ 'transitionIn' : 'elastic', 'transitionOut' : 'fade', 'overlayColor' : '#000', 'overlayOpacity' : '0.6' }); $(document.body) .on('mouseenter', '.thumbnail', function() { $('img', this).stop(true,true).fadeTo(600, 0); $('.description', this).stop(true,true).fadeIn(600); }) .on('mouseleave', '.thumbnail', function() { $('img', this).stop(true,true).fadeTo(600, 1); $('.description', this).stop(true,true).fadeOut(600); }); $("body.blog #content article:last, body.archive #content article:last, body.search-results #content article:last").addClass("last"); }); $('.btn_all').click(function(e) { $('.all').quicksand( $('.everything article'), { duration: time_effect, attribute: 'data-id', easing: effect_name, adjustHeight: 'auto', useScaling: false }, function() { // callback function $("a.single-image").fancybox({ 'transitionIn' : 'elastic', 'transitionOut' : 'fade', 'overlayColor' : '#000', 'overlayOpacity' : '0.6' }); $(document.body) .on('mouseenter', '.thumbnail', function() { $('img', this).stop(true,true).fadeTo(600, 0); $('.description', this).stop(true,true).fadeIn(600); }) .on('mouseleave', '.thumbnail', function() { $('img', this).stop(true,true).fadeTo(600, 1); $('.description', this).stop(true,true).fadeOut(600); }); $("body.blog #content article:last, body.archive #content article:last, body.search-results #content article:last").addClass("last"); }); $('.button_box a').removeClass('selected'); $(this).addClass('selected'); e.preventDefault(); }); $('.btn_identity').click(function(e) { $('.all').quicksand( $('.identity article'), { duration: time_effect, attribute: 'data-id', easing: effect_name, adjustHeight: 'auto', useScaling: false }, function() { // callback function $("a.single-image").fancybox({ 'transitionIn' : 'elastic', 'transitionOut' : 'fade', 'overlayColor' : '#000', 'overlayOpacity' : '0.6' }); $(document.body) .on('mouseenter', '.thumbnail', function() { $('img', this).stop(true,true).fadeTo(600, 0); $('.description', this).stop(true,true).fadeIn(600); }) .on('mouseleave', '.thumbnail', function() { $('img', this).stop(true,true).fadeTo(600, 1); $('.description', this).stop(true,true).fadeOut(600); }); $("body.blog #content article:last, body.archive #content article:last, body.search-results #content article:last").addClass("last"); }); $('.button_box a').removeClass('selected'); $(this).addClass('selected'); e.preventDefault(); }); $('.btn_web').click(function(e) { $('.all').quicksand( $('.web article'), { duration: time_effect, attribute: 'data-id', easing: effect_name, adjustHeight: 'auto', useScaling: false }, function() { // callback function $("a.single-image").fancybox({ 'transitionIn' : 'elastic', 'transitionOut' : 'fade', 'overlayColor' : '#000', 'overlayOpacity' : '0.6' }); $(document.body) .on('mouseenter', '.thumbnail', function() { $('img', this).stop(true,true).fadeTo(600, 0); $('.description', this).stop(true,true).fadeIn(600); }) .on('mouseleave', '.thumbnail', function() { $('img', this).stop(true,true).fadeTo(600, 1); $('.description', this).stop(true,true).fadeOut(600); }); $("body.blog #content article:last, body.archive #content article:last, body.search-results #content article:last").addClass("last"); }); $('.button_box a').removeClass('selected'); $(this).addClass('selected'); e.preventDefault(); }); $('.btn_illustration').click(function(e) { $('.all').quicksand( $('.illustration article'), { duration: time_effect, attribute: 'data-id', easing: effect_name, adjustHeight: 'auto', useScaling: false }, function() { // callback function $("a.single-image").fancybox({ 'transitionIn' : 'elastic', 'transitionOut' : 'fade', 'overlayColor' : '#000', 'overlayOpacity' : '0.6' }); $(document.body) .on('mouseenter', '.thumbnail', function() { $('img', this).stop(true,true).fadeTo(600, 0); $('.description', this).stop(true,true).fadeIn(600); }) .on('mouseleave', '.thumbnail', function() { $('img', this).stop(true,true).fadeTo(600, 1); $('.description', this).stop(true,true).fadeOut(600); }); $("body.blog #content article:last, body.archive #content article:last, body.search-results #content article:last").addClass("last"); }); $('.button_box a').removeClass('selected'); $(this).addClass('selected'); e.preventDefault(); }); $('.btn_print').click(function(e) { $('.all').quicksand( $('.print article'), { duration: time_effect, attribute: 'data-id', easing: effect_name, adjustHeight: 'auto', useScaling: false }, function() { // callback function $("a.single-image").fancybox({ 'transitionIn' : 'elastic', 'transitionOut' : 'fade', 'overlayColor' : '#000', 'overlayOpacity' : '0.6' }); $(document.body) .on('mouseenter', '.thumbnail', function() { $('img', this).stop(true,true).fadeTo(600, 0); $('.description', this).stop(true,true).fadeIn(600); }) .on('mouseleave', '.thumbnail', function() { $('img', this).stop(true,true).fadeTo(600, 1); $('.description', this).stop(true,true).fadeOut(600); }); $("body.blog #content article:last, body.archive #content article:last, body.search-results #content article:last").addClass("last"); }); $('.button_box a').removeClass('selected'); $(this).addClass('selected'); e.preventDefault(); }); });