Tagged Questions
The toggle tag has no wiki summary.
566
votes
10answers
210k views
How do you test if something is hidden with jQuery?
In jQuery, suppose you have an element of some kind that you're hiding and showing, using .hide(), .show() or .toggle(). How do you test to see if that element is currently hidden or visible on the ...
222
votes
24answers
13k views
Is there a better way of writing v = (v == 0 ? 1 : 0);
I want to toggle a variable between 0 and 1. If it's 0 I want to set it to 1, else if it's 1 I want to set it to 0.
This is such a fundamental operation that I write so often I'd like to investigate ...
28
votes
10answers
27k views
Click Toggle with jQuery
I've used hover function where you do x on mouseover and y and mouseout, so I'm trying the same for click but it doesn't seem to work:
$('.offer').click(function(){
...
18
votes
13answers
18k views
jQuery .toggle() not working with TRs in IE
I am using jQuery's toggle() to show/hide table rows. It works fine in FireFox but does not work in IE 8.
.show()/.hide() work fine though.
slideToggle() does not work in IE either - it shows for a ...
11
votes
7answers
48k views
Switch/toggle div (jquery)
I wish to accomplish a simple task (I hope!)
I got two div tags and 1 anchor tags, like this:
<a href="javascript:void(0);">forgot password?</a>
<div id="login-form"></div>
...
9
votes
1answer
8k views
Android Set ImageButton as Toggle
How can I have an imagebutton stay in the 'pressed' state when it is clicked? Basically I just want the background to be the depressed background, but I can't figure out how to set it. At the moment, ...
9
votes
4answers
3k views
link with href=“#” scrolls page to top when used with jquery slidetoggle
I'm using jquery's slidetoggle to show/hide divs.
the element that controls the sliding is a text link ( some text inside <\a>)
which has href="#" so it will look like a link (underline, cursor ...
8
votes
6answers
373 views
Is there a way to make changes to toggles in my .emacs file apply without re-starting Emacs?
I want to be able to make the changes to my .emacs file without having to reload Emacs.
I found three questions which sort of answer what I am asking (you can find them here, here and here), but the ...
7
votes
3answers
40k views
How to getElementByClass instead of GetElementById with Javascript?
I'm trying to toggle the visibility of certain DIV elements on a website depending on the class of each DIV. I'm using a basic Javascript snippet to toggle them. The problem is that the script only ...
6
votes
3answers
448 views
Horizontal ProgressBar: Toggling between determinate and indeterminate
I'm trying to toggle a SeekBar between the the two modes to display the state of streaming media.
I've established that the correct graphics show when defining the android:indeterminate tag in XML:
...
6
votes
4answers
562 views
C++ / Java: Toggle boolean statement?
Is there a short way to toggle a boolean?
With integers we can do operations like this:
int i = 4;
i *= 4; // equals 16
/* Which is equivalent to */
i = i * 4;
So is there also something for ...
6
votes
5answers
17k views
jQuery Toggle State
Here's the quick and skinny of my issue:
$("a").toggle(function() { /*function A*/ }, function() { /*function B*/ });
Inside function A a form is displayed. If the user successfully completes the ...
5
votes
6answers
89 views
Close Element when clicking anywhere on page
I have an element on my page that is toggled on and off by clicking on a text link. I also need the element to hide when a user clicks ANYWHERE on the page outside of the element itself - this is my ...
5
votes
3answers
187 views
Jumping in jQuery width animation
I'm having trouble working out why my animation is jumping. Any ideas?
http://jsfiddle.net/9F5DK/5/
jQuery(document).ready(function() {
// Animate the single page nav
...
5
votes
4answers
387 views
Show/hide div problems in IE7 only
I wondered whether someone might be able to help? I've tried and tried to find a solution myself, but nothing seems to work.
I have a horizontal list and when the user clicks on one of these links, a ...
5
votes
3answers
571 views
JQuery slideToggle problems
sure there is a obvious answer to this one but I don't know it. I am dynamically loading a page using JQuery .load() On the "loaded" page there is a form with form elements e.g. input type="number" ...
5
votes
4answers
2k views
collapse fieldset when legend element clicked
I have a jQuery function which toggles the visibility of the contents of a fieldset when its legend is clicked, leaving just the fieldset border (if there is one) and the legend showing:
...
5
votes
2answers
345 views
Using jquery toggle on individual divs
I'm trying to create a toggle effect using + and - boxes for showing and hiding divs. And example http://theodin.co.uk/tools/tutorials/jqueryTutorial/index.html
This is the script I'm using
...
5
votes
3answers
2k views
Does something like jQuery.toggle(boolean) exist?
I write something similar to the following code a lot. It basically toggles an element based on some condition.
In the following made-up example, the condition is "If the agree checkbox is checked ...
5
votes
4answers
14k views
Jquery Toggle Text?
Does anybody know how to toggle text the html text of an anchor tag using Jquery. I want an anchor that when clicked the text alternates between "Show Background" & "Show Text" as well as fading ...
5
votes
4answers
1k views
How can I toggle the main menu visibility using the Alt key in WPF?
I'd like the main menu in my WPF app to behave like the main menu in IE8:
it's not visible when the app starts
pressing and releasing Alt makes it visible
pressing and releasing Alt again makes it ...
4
votes
3answers
206 views
Toggling between two divs with cookies using jQuery
I have a function for toggling between two divs (.grid and .list) with a button (#button).
HTML:
<a href="#" id="button">Change view</a>
<div class="grid">GRID</div>
<div ...
4
votes
5answers
591 views
jQuery Panels - Toggle one DIV closed before Toggling open another one!
I have the following code.
I am wondering if there is a way to detect if a panel is toggled on and if so, automatically toggle it off before toggling another one on? This detect should happen ...
4
votes
2answers
377 views
Simple boolean data update with mongdb?
I am using Rails and mongoid to work with mongodb.
Usually in rails when working with Active:Record, you have access to the method .toggle! which simply allows you to invert the value of a boolean ...
4
votes
3answers
110 views
Dealing with multiple toggles
I'm stuck in a toggle() nightmare, and am finally asking for help.
What I want is pretty simple, I have three links:
a.showcountries.bronze
a.showcountries.silver
a.showcountries.gold
and three ...
4
votes
4answers
260 views
How to bind the 'toggle' event to a element
Is there a way I can use the 'bind' syntax for the 'toggle' event handler ?
From the docs I can understand that the correct way is
$('.selector').toggle( function() {}, function() {} );
My ...
4
votes
4answers
726 views
toggle multiple content and add text to the toggle link
I have about 25 show/hide (toggle) elements on a page like so...
HTML:
<h2><a href="#" class="link1">Headline One</a></h2>
<div ...
4
votes
5answers
5k views
jquery toggle and fade in one function?
I was wondering if toggle() and fadeIn() could be used in one function...
i got this to work, but it only fades in after the second click... not on first click of the toggle.
...
4
votes
1answer
2k views
JQuery Toggle Button Trigger
i have this code:
$('.access a').toggle(function() {
$('link').attr('href', 'styles/accessstyles.css');
$('body').css('font-size', '16px');
}, function() {
$('link').attr('href', ...
4
votes
4answers
2k views
android button bar toggle
I am looking for a UI view that imitates the functionality of the
Google Maps directions screen UI control where it allows the user to
pick the type of directions allowed, either Car, Transit or ...
4
votes
2answers
4k views
iPhone Wi-Fi Manager SDK
I'm attempting everal methods trying to enable/disable Wi-Fi (toggle). Here are some things I am trying:
//Enable
WiFiManagerClientEnable(WiFiManagerClientCreate(kCFAllocatorDefault, 0));
//Disable
...
3
votes
3answers
55 views
Trigger a button on page load
I have this function
$("a#<?php echo $custom_jq_settings['toggle']; ?>").click(function() {
jQuery("#<?php echo $custom_jq_settings['div']; ?>").slideToggle(400);
...
3
votes
3answers
107 views
jQuery: Toggle height on multiple sections with one function
I have multiple sections, three to be exact, of varying heights with a basic layout of:
<section>
<h2>My heading</h2>
</section>
I'm looking for a way to show ...
3
votes
2answers
77 views
How to toggle visibility when user makes a selection
I have a select form with several options. I also have a div that I would like to show ONLY when a particular option is selected. Could you guys point me in the right direction? What would be the ...
3
votes
6answers
386 views
Swap div visibility based on time / schedule
On my page I have two divs... one div I'd like to be visible from 10am to 6pm ( server time ).... and the other div for the remaining hours.
I tried a bunch of searches to find some sort of a ...
3
votes
2answers
72 views
How to change a span's content when other element is clicked
I am looking to change the content of this span tag:
<span class="ui-btn-text" id="btnText">Read how we have helped</span>
To:
<span class="ui-btn-text" id="btnText">Hide ...
3
votes
3answers
152 views
jQuery - toggle & removeClass
An easy one, but I can't figure it out. I have a link called #title and when you click it it toggles div called #content. This works perfectly, but in addition I'm adding "active" class to my #title ...
3
votes
4answers
241 views
Jquery Toggle function not working!
I have made a little Jquery after thinking a lot (as I'm new to this), and found it not working properly! See, in my code I suppose to click on the element which is set by the var trigger and the ...
3
votes
1answer
321 views
jQuery toggles for table rows with cookies
I'm trying to combine the codes from these two questions:
using jQuery to slideToggle a group of Table Rows
jQuery toggle with cookies - collapsed state by default
The first example implements ...
3
votes
2answers
146 views
jQuery Toggle on mouseup
I have the following jQuery:
$('#account-menu').hide();
$("#account-link").click(function(e) {
e.preventDefault();
$("#account-menu").toggle();
...
3
votes
2answers
138 views
jQuery: How to select the next element with name-xyz?
I'm trying to build a really simple generic toggle functionality where the toggling "switch" has a class of .toggle and then I want it to toggle() the next element that has the class .toggle-content.
...
3
votes
2answers
342 views
Jquery toggle(), hide() not working as expected
I'm just starting out with JQuery in a Drupal environment.
I have some thumbnails, and I want it so that when you click one, the bigger picture appears in the "viewport" (a hidden div appears). ...
3
votes
3answers
130 views
How can I toggle elements in jquery dynamically?
So what I want to do is to make a dynamic little script for selecting countys and then cities. Well I have all the countys and citys in a mysql database. If I choose a county in a <select> tag ...
3
votes
1answer
986 views
visual studio C++ toggle comment ? comment while not whole line is selected?
2 questions actually :
1) shortcut to toggle comment on selected lines ? Available on all iDEs I used starting with notepad++
2)the ctrl-k, ctrl-c exhibits this behavior (quoted from someplace ...
3
votes
4answers
417 views
jquery toggle text only changes once
I have the following code which should change the value of an h2 from "Show More" to "Show Less" and then back again when the parent is clicked.
The if() tests ok and changes the text to Show Less ...
3
votes
5answers
3k views
Jquery, hide & show list items after nth item
Say I have an unordered list, like so:
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
<li>Four</li>
<li>Five</li>
...
3
votes
1answer
595 views
How to reset toggle in jQuery?
The menu structure I have is given below. The necessary requirements are:
Each li must be a toggle where it can be selected and deselected for items 1-4. Multiple li's can be selected between the ...
3
votes
3answers
461 views
jQuery: How-to toggle display on hover
I have 2 spans.
First one: <span class="body">
Second one: <span class="desc">
My CSS:
.desc {display: none;}
What I want to do, is show the second span, when hovering the first. No ...
3
votes
4answers
4k views
jQuery toggle CSS?
I want to toggle between CSS so when a user clicks the button (#user_button) it shows the menu (#user_options) and changes the CSS, and when the user clicks it again it goes back to normal. So far ...
3
votes
3answers
927 views
I need to unset the state of the jQuery .toggle(odd,even)
I have items in a table cell that gets toggled on and off.
An external button accepts a click and submits the selected cell values via ajax.
The problem is that I want to reset the toggle state for ...