Sorry for the late reply!
@Justin Meyer: Do you mean the red circle with the white cross in it in firebug before security error? Or an image used in the page?
Hm. I thought it might be due to the fact that im google fonts there. But also with them being deactivated it shows the same error. Other guess would be, that Im using ajax to display my content. You can find the Code here (jquery++ is currently deactivated):
http://designworlds.de. Hope this helps. If you got further questions or need a test-scenario, I can also give you my email.
Could there be a problem with stop() maybe? Removing it did not trigger that particular animate but at least the code behind it ran. Or is there a problem with location.hash? I dont know, as I didnt have the time to dive to deep into the Code of jquery++.animate().
Edit: The animate-context-code where animate is not triggered looks like this:
- var $circles = $('.circle');
- (....)
- $(window).hashchange(function() {
- var loc = "#" + location.hash.substring(2);
- var $this = $(loc);
- if(!$this.hasClass('active')) {
- $('#navi > div.active').removeClass('active');
- $this.addClass("active");
- $(act_id).fadeOut(300, function() {
- //Active Circle'FadeOut'
- $circles.stop().animate({
- 'width' : '52',
- 'height' : '52',
- 'left' : '35',
- 'top' : '40',
- 'opacity' : 1
- }, 500, function() {
- CircleFadeIn($this, 0);
- });
- });
- }
- });