I’ve got some script:
$(window).load(function(){
$("#kontakt_kontakt").hover(
function(){
$("#kontakt").animate({left: '',bottom: '+=60'}, 440);
},
function(){
$("#kontakt").animate({left: '',bottom: '-=60'}, 440);
});
});
On hover it makes the img go few pxs up. Working perfectly in chrome but doesn’t really work in IE – just nothing happens. Anyone one got a clue how to solve it?
You can check it here: http://kafior.mydevil.net/index.html
you have this error:
in your prototype.js file, you are including a couple versions of jQuery and prototype and both of those frameworks are using
$, you need to look into the noConflict method in jQuery, and you really should try to remove as many versions of jQuery you can, there is no real reason you need to download 2-3 versions of jQuery.