Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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();
share|improve this question
Can you elaborate what the problem is? – DaveHogan Nov 23 '12 at 12:20
the #etkinlikslide div should slide up but it works only in firefox. – Sezer Ekinci Nov 23 '12 at 13:02

1 Answer

up vote 0 down vote accepted

Your problem is that the default for CSS property top is set to auto in IE where as it is 0 in Firefox.

So the function var topcheck =parseInt($('#'+etkinlikid).css("top"))+parseInt($('#'+etkinlikid).height()); fails as it returns NaN.

Adding top: 0; in your CSS to the div would solve it

Fiddle Link

share|improve this answer
thank you so much it work. – Sezer Ekinci Nov 23 '12 at 13:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.