Tagged Questions
6
votes
2answers
188 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
36 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 ...
2
votes
2answers
217 views
jQuery slideToggle on a table with thead and tbody elements. No animation.
I have a table with a thead and tbody sections. I have applied a slideToggle on this successfully, but the animation is broken.
When a user clicks on the thead, I want the contents of the tbody to ...
1
vote
2answers
90 views
Control slideToggle() jQuery
I have 4 form_header divs and 4 form_body divs. I'm using jQuery slideToggle() to expand the form_body divs by clicking the form headers.
This is a perfect example of what I'm doing:
jQuery ...
1
vote
3answers
150 views
Show / Hide DIVs with toggleSlide
I am showing/hiding DIVs like this:
HTML:
<a href="#" class="showhide" source="one"> Show/Hide </a>
<div id="one"></div>
<a href="#" class="showhide" source="two"> ...
1
vote
1answer
546 views
jquery slideToggle strange effect
This is an example of code I have created to explain the situation.
It works well but when it toggle to hide the tbody, it does a estrange effect (first expands the tbody by three or four times more ...
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
4answers
62 views
jQuery slideToggle not working
My javascript:
$("#preview-click").click( function() {
$("#preview").slideToggle("fast", function() {
$("#preview-pdf").html('<iframe style="width: 100%; height: 500px;" ...
0
votes
1answer
83 views
jQuery .show working but not .hide when using slideToggle
I am using jQuery for multiple toggling menus on my site. However, if I change it's initial loading from .show to .hide it will not work.
My js file is:
jQuery(document).ready(function($) {
$('div ...
0
votes
3answers
112 views
JQuery slideToggle timeout
I have simple html page:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script ...
0
votes
1answer
97 views
using slideToggle on a cell that is spaned 3 columns
I am trying to create a table, whereas when the user clicks on one of the rows, a block will slide down the same length of the table. I tried using a div, but I guess you can't have a div anywhere in ...