Tagged Questions

6
votes
2answers
200 views

Sliding panel jumping back to home when clicked

I made a vertical sliding panel on a 1page website (click psssst on the top right). All in all it works fine, it slides up and down properly (still a little bump on the button when sliding, but no ...
3
votes
3answers
40 views

Why is my content clipped when using .slideToggle()?

jsFiddle here: http://jsfiddle.net/_mtr/bvs6w Basically I have an unordered list consisting of two elements: a title and a span of a few rows of text. The span is toggled on hover, but if the user ...
1
vote
3answers
38 views

why slideToggle jumping? and how to get it to apply only to article clicked?

Ok so here is my jsfiddle - http://jsfiddle.net/8947F/ basically the slideToggle seems to add then take away some height at the bottom so that it looks like it jumps... Also the clicking affects all ...
1
vote
2answers
99 views

Trying to apply css to jQuery slideToggle when links are clicked

Have a series of lists that I'm trying to show/hide using jQuery slideToggle, and need to apply a different css style to the hyperlinks that do the show/hide after they've been clicked, and then ...
1
vote
0answers
1k views

jQuery & IE7 render bug with slideToggle()

I have worked quite a bit with jQuery and slidetoggle effects without coming across this bug before. The page is http://gilman.oomphdev.com, and the bug is when a user clicks the "What's This?" tag at ...
1
vote
3answers
1k views

content disappearing when using jquery slideToggle in IE7

I've seen this question asked several times but haven't seen any answers. I have a ul that I'm expanding and collapsing using slideToggle() with jquery. The code is simple: $('#leftMenu li ...
1
vote
1answer
395 views

jquery show hide issue with non block elements

I am trying to show/hide a users twitter feed when the icon is clicked on. The issue is that my markup looks like this: <a href="#"><img src='images/twitter.png' id='twitterImg' ...
1
vote
2answers
2k views

jQuery Drop Down Menu - slideToggle

jQuery $(document).ready(function(){ $('.cats_showall').click(function(){ $('.cats_dropdown li').slideToggle(); }); }); CSS .cats_dropdown li{ display: none; } .cats_dropdown > ...
0
votes
1answer
60 views

Is it possible to create show/hide on display inline-block without affecting neighboring elements?

I've created a demo of the problem I'm having: http://jsbin.com/omomit/2 When you click on show/hide link, you see the hidden text appear. The behavior I'd like to fix is how it pushes down both the ...
0
votes
3answers
121 views

change slideToggle() behaviour to display:inline-block instead of display:block?

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. ...
0
votes
1answer
173 views

Jquery slide toggle makes my text area jump down

I am using this jQuery plugin: http://api.jquery.com/slideToggle/ I have this code: <div id=panel><form action="postit.php" method="get" name="post" style = "margin-left:40px;"> ...
0
votes
1answer
86 views

slideToggle the whole div

I am developing a page where the content is hidden behind a jquery toggle button. I want the content wrapper to expand both horizontally and vertically when clicked (currently the wrapper only expands ...
0
votes
2answers
131 views

trying to scale jquery panel toggler with position:absolute to my webpage

I used position:absolute; so that when you click the tab "Send this page to your email", at the top, the panel goes down and goes over the content underneath instead of pushing them down. However, ...
0
votes
2answers
123 views

Problem Slide-In/Out JQuery

Slide out is no problem i only have problem about slide in that doesnt show up and i think it didnt catch their first IF width equal 0px. sorry im really noobs about jQuery. CODE: <script ...
0
votes
1answer
119 views

Why when i use jquery slideDown and Up function, the element cannot be padding or it will be an error

Below is my code with padding '#'expand{ padding: 16px; display: none; background-color: #fff; } when i put slidetoggle to this element, it seems like the padding animated with the ...
0
votes
3answers
376 views

Show and Hide menu (where only shows one at a time)

Im having such a problem, I have a menu that has some hidden sub content. That when the user clicks the nav button some hidden content will appear. That part is fine and all working. What I need to ...
0
votes
2answers
227 views

Expanding Div's using jQuery slideToggle

Can anyone shed some light on this for me: http://67.212.188.229/fcf/index.html <- Please look at the right hand side panels, I would like the user to click on either and have the box expand with ...