i have just wrote a siple slider. But there is something strange and i couldn't fix it. The script works in firefox (12) and not with; crome (23.0.1271.64 m), opera (12.02), ie (7-8-9-D), safari (5.1.7).
Here is the code below. Can anyone tell me how i can i fix it?
jsfiddle code.
$.fn.etkinlikslide = function() {
var etkinlikid = this.selector.replace(/\#/g,'');
var esheight = parseInt($('#'+etkinlikid).height());
var epheight = parseInt($('#etkinlikpanel').height());
function oynat(){
var topcheck =parseInt($('#'+etkinlikid).css("top"))+parseInt($('#'+etkinlikid).height());
if (topcheck<0) $('#'+etkinlikid).css("top",$('#etkinlikpanel').css("height"));
$('#'+etkinlikid).css("top",parseInt($('#'+etkinlikid).css("top"))-1+'px');
}
if (esheight>epheight) {
var etkinliktimer = window.setInterval(function() {oynat()}, 80);
$('#'+etkinlikid).hover(function(){
window.clearInterval(etkinliktimer);
},function(){
etkinliktimer = window.setInterval(function() {oynat()}, 80);
});
}
};
$("#etkinlikslide").etkinlikslide();