Tagged Questions

0
votes
2answers
51 views

JQuery Slide Event and Div Height not changing as expected

I am working with JQuery and I'm trying to change the html of a div box when the child div slides in and out. My problem is that the code below isn't changing the html value of #me …
0
votes
1answer
43 views

Jquery - slideDown with existing height.

If i have a div with a class that sets the height 100px, and overflow:hidden (effectively a preview of it's contents), how can i incorporate the 'slideDown()' method to slide to th …
0
votes
1answer
96 views

jQuery slideToggle() Internet Explorer problem and jumpy animation

Hey yaa! I have a big problem with my jquery. I finally made it that my slidetoggle runs in firefox. The animation is a little bit jumpy in the end of the animation. I read a lot …
0
votes
0answers
67 views

Jquery slideToggle IE problem

Hi everyone, i got my jquery slideToggle working for Firefox. Ok it's not perfect, because when it slides down the performance is somehow jumpy. I tried different workarounds, but …
0
votes
0answers
18 views

SlideToggle within select form (menu) — need IE compabibility

Hi all- I have a drop-down menu (select form) and I need for divs to be revealed when a user clicks on a certain option. Select One Air Service Ocean Service Domestic Service …
0
votes
1answer
37 views

How to scroll to an element after expanding with slideToggle?

scrollTo is not scrolling to a div that expands past the bottom of the page... any suggestions? (jQuery 1.3, scrollTo 1.42) function toggleCollapsible(ownerDiv) { ownerDiv.nex …
1
vote
2answers
175 views

jQuery slideToggle doesn’t work with colspan in Firefox?

<script type="text/javascript"> $(document).ready(function() { $('#description').show(); $('#extender').click(function() { $('#description').slideToggle("fast") …
0
votes
1answer
64 views

slideToggle Callback Function

// accordion $("#left-nav .block h2").click(function(){ $(this).next("div").slideToggle("fast", function() { alert("hey"); $("#left-nav, #content, #aside" …
0
votes
1answer
20 views

Incorrect Toggling (jQuery)

I've a simple menu on my page, that uses this jquery code for basic toggling: $("#left-nav .block h3").click(function(){ $(this).next("ul").slideToggle("fast"); $(this).toggle …
1
vote
2answers
220 views

JQuery slideToggle display type

I'm using a jQuery slideToggle to show a hidden table row but it sets the display style to block and I need to to display table-row. any ideas how i could accomplish this? thanks …
1
vote
2answers
317 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_dro …
0
votes
2answers
137 views

Read More Feature with JQuery slideToggle Method

Hi, Everyone, I am trying to do read more feature with JQuery's slideToggle thing but the problem is as read more feature normally there is a little text shown on the page and whe …