my target slideToggle() div needs to be display:inline-block instead of display:block when it's open. Is there a way to change the jquery behavior here?

Edit:

i'm using jQuery 1.7.0 at the moment. Also, the <div> is initially at display:none and should expand to display:inline-block after a click on a link; but apparently the default state for slideToggle() in this situation is display:block ...

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

If you find yourself seeing an unwanted "Flash of Unstyled Content" you could also use an inline style. The usual wisdom of "don't put style inline" is really meant for your main styling, not for visual effects (JS effects all just add inline styles after all).

Of course, the content won't be seen by JS-disabled search engine spiders, if that's important. If it's not important, you're good!

Update of @fliptheweb's fiddle: http://jsfiddle.net/GregP/pqrdS/3/

link|improve this answer
feedback

Are you on an old version of jQuery? This should have been fixed already, see discussion here:

http://bugs.jquery.com/ticket/2185

link|improve this answer
Thanks, but i don't think this bug applies here - see my edit. – iHaveacomputer Nov 16 '11 at 0:55
I see. In that case, I recommend @fliptheweb's solution – Alex Peattie Nov 16 '11 at 1:00
feedback

Just try to hide your block via scripts (dont display:none via styles) Try this - http://jsfiddle.net/fliptheweb/pqrdS/

link|improve this answer
feedback

A little birdie told me...

$('#my-block').slideToggle('medium', function() {
    if ($('#my-block').is(':visible'))
        $('#my-block').css('display','inline-block');
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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