Support Forum
looks like its still running... at least something opacity and fading of thumbnails is throwing errors and stopping script processing...
Visit Cruise Talk Central and Mr Papa's World
This is the code that the console is flagging as producing errors:
<script type="text/javascript"> var $ = jQuery; $(document).ready(function(){ $(".fadein").fadeTo("medium", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads $(".fadein").hover(function(){ $(this).fadeTo("medium", 1.0); // This should set the opacity to 100% on hover },function(){ $(this).fadeTo("medium", 0.7); // This should set the opacity back to 30% on mouseout }); }); </script>
So what you really need to do is locate this code in th theme files. I wuld start by looking in the functions.php file - then the header.php. If not in those - look to see if there is a specific folder with .js files in.We can certainly help rewrite this to avoid this particular error ans hopefullty this error is not masking another one.
YELLOW
SWORDFISH
|
lets try something simple first... try changing it to:
<script type="text/javascript"> jQuery(document).ready(function(){ jQuery(".fadein").fadeTo("medium", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads jQuery(".fadein").hover(function(){ jQuery(this).fadeTo("medium", 1.0); // This should set the opacity to 100% on hover },function(){ jQuery(this).fadeTo("medium", 0.7); // This should set the opacity back to 30% on mouseout }); }); </script>
Visit Cruise Talk Central and Mr Papa's World
sounds like you didnt enter the code properly... or you got strange characters when you copied it...
noticed I didnt mark it as code... let me do that and then you should use the raw copy button...
Visit Cruise Talk Central and Mr Papa's World