Just when I thought I was done for the night, another issue is keeping me awake.
It appears that somehow I have broken the fade I was using on my thumbnails. If you go here: http://ftfranes.com/mliad2/ When you hover your mouse of the thumbnails, it should fade up.
To give you an idea, this is a working version of the script: http://nothingcantuochme.com/stackoverflow.php#download_page As you can see, the hover works fine with the fade. And please mind the mess on this one, I just added it to demonstrate.
Is there anyone that can kindly assist me in solving this issue? I would lie if I told you that I wasn't completely lost.
$(function() {
// JUST CHANGE THE SELECTOR
// MAY NEED TO REFINE IF IT AFFECTS OTHER ELEMENTS
$('.image > a').each(function() {
/*$(this).append('<div style="position:absolute; top:5px; left:5px; width:200px; height:150px; background:red;"></div>');*/
$(this).hover(function(){
$(this).find('img').stop().animate({
opacity: 0.8
})
},function(){
$(this).find('img').stop().animate({
opacity: 1
})
});
});
});
My idea, Javascript is stopped in middle of the processing. Check your debug console.
Error: uncaught exception: Error: Permission denied for http://www.facebook.com to get property Proxy.InstallTrigger
If your fadeout script is after this code, the script will not work.
Okay, as far as I can tell, the issue is here.
<a href="http://vimeo.com/24849072" class="vimeo_nothingcan"> <img alt="" src="images/nothingcan.png"> </a>
The classes of your link are incorrectly named. In the script.js file, it specifies that the class must be vimeo, youtube zoom etc... You need to rename your class to "vimeo nothingcan" without the underscore.
Check line 680 of script.js
The function you mentioned in a comment, is set to the event "onclick." You need to edit the function on 680 that is bound to "hover."
Selector in 678 of script.js:
$('a.zoom, a.vimeo, a.youtube, a.vimeo_final')
But in your page, the class is a.vimeo_nothingcan
Try adding: "a.vimeo_nothingcan" to the selector in that line:
$('a.zoom, a.vimeo, a.youtube, a.vimeo_final,a.vimeo_nothingcan')