javascript - fadeTo not working in ie10 -


i not sure why after looking @ examples thought same previous questions decided post.. have button when clicked following things...

$('.fa-phone, .bg-darkpink').parent().on('click', function () {       $('#testimonials').fadeto(0, 0);        $('.submenu-ctn').fadeto(0, 0);        $("#colorscreen").remove();       $("body").append('<div id="colorscreen" class="animated"></div>');       $("#colorscreen").addclass("fadeinupbigcs");       $(".musability-music-therapy-content-space").css({width: "720px",opacity:1}).load("contact-page.html #contact-form");       $(".submenu-ctn").load("contact-page.html .submenu-contact");       $.getscript("js/slider/slider-animations.js");       $(".submenu-ctn").load("contact-page.html .submenu-contact");       $('.nav-toggle').removeclass('active');       $(this).addclass('active');         $('#menu').multilevelpushmenu('collapse');       $('.submenu-ctn').fadeto(3000, 1); }); 

the problem bit of script not getting executed.

$('#testimonials').fadeto(0, 0);  

where css , html follows

<div id="testimonials">    <div class="box animated 7 boxgreen testimonials1">     <p class="fg-white">"".<p class="text-small fg-white">- m         <span class="imagestars">         <img src="images/mthc/stars.png" alt="testimoinal rating 5 star">         </span>     </p> </div>  <div class="box animated 9 boxgreen testimonials2">     <p class="fg-white">" long term"<p class="text-small fg-white">kool.         <span class="imagestars">         <img src="images/mthc/stars.png" alt="testimoinal rating 5 star">         </span>     </p> </div> </div>  #testimonials {     display:block;     opacity:1;     z-index:1500; } 

not sure what's going on investigating debug isn't telling atm. works in other browsers hmmmm ?

so i.e 10 doesn't classes have overflow:hidden within div trying fadeto ... taking them out of classes within div sorted problem out !


Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

php - Best Light server (Linux + Web server + Database) for Raspberry Pi -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -