active questions tagged toggle - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T15:50:45Z http://stackoverflow.com/feeds/tag/toggle http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1844426/javascript-toggling 0 Javascript Toggling Shadi Almosri 2009-12-04T01:58:51Z 2009-12-04T02:44:50Z <p>Hiya,</p> <p>I'm trying to get a toggle effect but not quite sure how to do it or what to look for. (i jave Jquery loaded).</p> <p>assume html similar to</p> <pre><code>&lt;table class="left-dates"&gt; &lt;tr&gt;&lt;td&gt;All Dates&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;01 dec 2009&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;02 dec 2009&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;03 dec 2009&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;04 dec 2009&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;div class="box 01-dec-2009"&gt; foo &lt;/div&gt; &lt;div class="box 03-dec 2009"&gt; bar &lt;/div&gt; &lt;div class="box 04-dec-2009"&gt; foobar &lt;/div&gt; </code></pre> <p><strong>Steps to take</strong> </p> <ol> <li>All div's are shown</li> <li>Clicking on a td for a date will hide all but the div with the class of the day clicked</li> <li>clicking "All dates" will show everything again</li> </ol> <p>any idea how i could achive this cleanly? ideally using JQuery.</p> http://stackoverflow.com/questions/1836594/html-on-flash-flash-on-html-toggle 0 HTML on Flash/Flash on HTML Toggle unknown (yahoo) 2009-12-02T23:21:50Z 2009-12-02T23:21:50Z <p>HTML on Flash/Flash on HTML Toggle</p> <p>Hi. Does anyone know a Javascript API or some good way to launch HTML over Flash and then when the user interacts with the flash part it becomes Flash on HTML. </p> <p>It only needs to turn to html over flash when the user interacts with the flash part.</p> http://stackoverflow.com/questions/1833738/jquery-toggle-vertical-slider-effect-with-multiple-divs 0 jQuery toggle/vertical slider effect with multiple Divs Vijay 2009-12-02T15:45:16Z 2009-12-02T16:04:23Z <p>Hi, Actually, I am new to jQuery and I am writting a sample page with jQuery functions. In this page I am making use of toggle function. Please help me to get the intended effect. I am trying to get it but it is not working properly. The effect I am trying to apply is;</p> <ol> <li>There are 2 buttons on the page, say Button1 and Button2. </li> <li>There are 2 Divs, say Div1 and Div2.</li> <li>Initially both Divs are hidden and only 2 buttons are visible.</li> <li>If Button1 is clicked, Div1 should get toggle down and vice versa.</li> <li>If Div1 is in open state and Button2 is clicked, Div1 should go up slightly and Div2 should fall down.</li> </ol> <p>I have written some code with CSS applied on it. But I am not getting the sliding effect as it gives with only one Div.</p> <p>I have written Javascript as;</p> <pre><code>var IsPanelDown = false; var IsPanel2Down = false; $(document).ready(function() { // Expand Panel $("#open").click(function(){ if (IsPanel2Down == false) { $("div#panel2").slideUp("slow"); IsPanel2Down = false; } $("div#panel").slideDown("slow"); IsPanelDown = true; }); // Collapse Panel $("#close").click(function(){ $("div#panel").slideUp("slow"); IsPanelDown = false; }); // Switch buttons from "Log In | Register" to "Close Panel" on click $("#toggle a").click(function () { $("#toggle a").toggle(); }); $("#toggle2 a").click(function () { $("#toggle2 a").toggle(); }); $("#open1").click(function(){ if(IsPanelDown == false) { $("div#panel").slideUp("slow"); IsPanelDown = false; } $("div#panel2").slideDown("slow"); IsPanel2Down = true; }); // Collapse Panel $("#close1").click(function(){ $("div#panel2").slideUp("slow"); IsPanel2Down = false; }); }); </code></pre> http://stackoverflow.com/questions/1527664/toggle-divs-for-open-close-with-derek-perez-pageslide 0 Toggle divs for open/close with Derek Perez PageSlide Bo 2009-10-06T19:40:56Z 2009-12-01T00:00:03Z <p>Hi,</p> <p>I'm trying to use <a href="http://derekperez.com/jquery-pageslide/demo/" rel="nofollow">Derek Perez PageSlide Plugin for jQuery</a> in a Wordpress site. Default beahaviour is a link to open it, and click anywhere else on the page to close it.</p> <p>I would like to toggle images saying "open" when it's closed and "close" when it's open. So I have played around with jquery toggle() and enclosing the links in divs but can't get it to work. I can get 2 simple divs to toggle, but not with link content. </p> <p><strong>open link:</strong><br> <code>&lt;a href="_right.html" id="slide-right"&gt;</code></p> <p><strong>close link:</strong><br> <code>&lt;a href="javascript:;" class="pageslide-close"&gt;</code></p> <p><strong>Below enclosed in divs with images to clarify:</strong><br> <code>&lt;div id="opendiv"&gt;</code><br> <code>&lt;a href="_right.html" id="slide-right"&gt;&lt;img src="open.png"&gt;&lt;/a&gt;</code><br> <code>&lt;/div&gt;</code><br></p> <p><code>&lt;div id="closediv"&gt;</code><br> <code>&lt;a href="javascript:;" class="pageslide-close"&gt;&lt;img src="close.png"&gt;&lt;/a&gt;</code><br> <code>&lt;/div&gt;</code><br></p> <p>Any ideas? Thank's /Bo</p> <p><strong>Edit:</strong><br> Seems like the below script part, that has to be located at the very bottom of the page, interrupts the execution of the jquery toggle() function. Ideas?</p> <p><code>&lt;script type="text/javascript"&gt;</code><br> <code>$("#slide-left").pageSlide({ width: "350px", direction: "left" });</code><br> <code>$("#slide-right").pageSlide({ width: "350px", direction: "right" });</code><br> <code>$("#slide-modal").pageSlide({ width: "350px", direction: "left", modal: true });</code><br> <code>&lt;/script&gt;</code></p> http://stackoverflow.com/questions/1802896/jquery-flexible-hide-show-of-fieldsets 0 jQuery flexible hide/show of fieldsets ApoY2k 2009-11-26T10:34:44Z 2009-11-26T10:53:17Z <p>I want to enhance some fieldsets with the option to show / hide their contents upon clicking their label.</p> <p>Currently, the HTML looks like this:</p> <pre><code>&lt;fieldset&gt; &lt;legend&gt;Fieldset 1&lt;/legend&gt; &lt;!-- Some input, p, div, whatever --&gt; &lt;/fieldset&gt; &lt;fieldset&gt; &lt;legend&gt;Fieldset 2&lt;/legend&gt; &lt;!-- Some input, p, div, whatever --&gt; &lt;/fieldset&gt; </code></pre> <p>So, on click of one <code>fieldset legend</code>, anything but the clicked legend of the parent fieldset should be toggled.</p> <p>I tried using this:</p> <pre><code>$("fieldset *:not(legend)").hide(); $("fieldset legend").click(function(){ $(this).nextAll().slideToggle(); }); </code></pre> <p>But it doesn't do anything (not even hide the contents in the first place). Of course I want to only toggle the view on the very fieldset the user has clicked, so it has to somehow determine what legend was clicked and then hide the contents of the corresponding fieldsets.</p> <p>Sure, I could give them all IDs and write the code for every fieldset, but thats rather redundant seeing it would always be the same I think there has to be a way to make this functionality universal for any amount of fieldsets...</p> <p>Anyone has a neat idea?</p> http://stackoverflow.com/questions/1785650/jquery-toggle-class-on-mouseover-mouseout-of-element-but-keep-class-if-click-in 0 jquery: Toggle class on mouseover/mouseout of element, but keep class if click inside element? KyokoHunter 2009-11-23T20:15:13Z 2009-11-23T20:24:58Z <p>Hi, suspect I'm trying to be too clever for my own good with this one!</p> <p>I'm working on a jQuery plugin function that will toggle a class on/off on an element when you hover in/out, but doesn't remove the class if you click inside the element before hovering out and doesn't toggle if the element already has that class before hovering in.</p> <p>I tried coming up with the following:</p> <pre><code> $.fn.showHover = function(settings) { this.bind('mouseover', function hoverIn(){ if ($(this).hasClass('active') == false) { $(this).addClass('active'); $(this).bind('click', function getFocus(){ $(this).unbind('mouseout', hoverOut); }) $(this).bind('mouseout', function hoverOut(){ $(this).removeClass("active"); $(this).unbind('click', getFocus); }) } }) return this; }; </code></pre> <p>...the idea if you hover out before clicking, remove the class and unbind click - if you click before hovering out, unbind mouseout and the class never gets removed.</p> <p>Obviously (since I'm asking here for help!) it doesn't work - the class gets removed whether I click inside the element before hovering out or not.</p> <p>Can anybody point out why it's failing, and possibly suggest a better way around it? Thanks!</p> http://stackoverflow.com/questions/1771266/trying-to-toggle-multiple-divs-with-jquery 0 Trying to toggle multiple DIV's with Jquery RachelGatlin 2009-11-20T15:33:23Z 2009-11-20T20:33:48Z <p>Hello All,</p> <p>I have been trying to get this function to work for awhile now. I have 11 different divs that are hidden by default. Each have a "trigger" button that is supposed to get them to pop open. I was able to do this with a much longer series of functions for each specific div (which ended up being about 175 lines of code!). I wanted to condense it down into a single function that would do the same thing ie: trigger 1 is clicked - div 1 opens/ trigger 1 is clicked again, div 1 closes etc, etc. </p> <p>Here is my script as of now </p> <pre><code> $(document).ready(function() { $("[class^='ShowVehicles']").toggle(function() { alert("click happened"); $("[class^='HiddenVehicles']").slideDown(1000); }, function () { $("[class^='HiddenVehicles']").slideUp(1000); }); }); </code></pre> <p>It's currently opening all "HiddenVehicles" divs and I need to make it more specific. I'm fairly new to jquery so I have pretty much run out of ideas. Thanks in advance guys!</p> <p>Edit - Thanks for all the help guys, here's the solution I came up with: </p> <pre><code> $(document).ready(function() { $("div.WrapIt").toggle( function(){ $(".HiddenVehicles", this).slideDown(1000); $("img.imgSwap" , this).attr("src","assets/images/SelectBySize/SelectBySize_HideAll.gif"); }, function(){ $(".HiddenVehicles", this).slideUp(1000); $("img.imgSwap" , this).attr("src","assets/images/SelectBySize/SelectBySize_ShowAll.gif") } ); $(".ShowEveryThing").toggle( function() { $(".WrapIt .HiddenVehicles").slideDown(1000); $("img.imgSwap").attr("src","assets/images/SelectBySize/SelectBySize_HideAll.gif"); $("img.buttonSwap").attr("src","assets/images/SelectBySize/SelectBySize_HideBtn.gif"); }, function(){ $(".WrapIt .HiddenVehicles").slideUp(1000); $("img.imgSwap").attr("src","assets/images/SelectBySize/SelectBySize_ShowAll.gif"); $("img.buttonSwap").attr("src","assets/images/SelectBySize/SelectBySize_ShowBtn.gif"); }); }); </code></pre> <p>I created a wrapper div and had the function fire when that div was clicked. I also included some image swapping and a show all function. </p> http://stackoverflow.com/questions/1750617/checkbox-div-toggle 0 checkbox / div toggle Nimbuz 2009-11-17T17:53:04Z 2009-11-17T17:55:40Z <pre><code>$(".trigger").click(function () { $(this).next(".toggle").slideToggle("fast"); $(this).toggleClass("active"); return false }); </code></pre> <p>HTML:</p> <pre><code>&lt;input type="checkbox" class="trigger"&gt; &lt;div class="toggle"&gt;content&lt;/div&gt; </code></pre> <p>It isn't working, whats wrong with the code?</p> <p>Thanks</p> http://stackoverflow.com/questions/244392/jquery-toggle-state 2 jQuery Toggle State neezer 2008-10-28T18:50:09Z 2009-11-17T17:32:13Z <p>Here's the quick and skinny of my issue:</p> <pre>$("a").toggle(function() { /*function A*/ }, function() { /*function B*/ });</pre> <p>Inside <code>function A</code> a form is displayed. If the user successfully completes the form, the form is hidden again (returning to it's original state).</p> <p>Inside <code>function B</code> the same form is hidden.</p> <p>The theory behind this is that the user can choose to display the form and fill it out, or they can click again and have the form go back into hiding. </p> <p>Now my question is this: currently, if the user fills out the form successfully--and it goes into hiding--the user would have to click on the link <strong><em>twice</em></strong> before returning to the toggle state that displays the form.</p> <p>Is there anyway to programmatically reset the toggle switch to its initial state?</p> http://stackoverflow.com/questions/1743843/jquery-toggle-effects-flashing-entire-page-in-certain-cases 0 jQuery toggle effects 'flashing entire page' in certain cases. DA 2009-11-16T18:04:15Z 2009-11-16T18:08:24Z <p>I have a page that may have 10 or so editable 'panels' of information. To enable editing, I create a new DIV, load content via AJAX then toggle the divs (the one showing toggles off and the one I created with AJAX content is toggle to show).</p> <p>This works great except for the last (bottom-most) one or two areas. When those toggle, I get a visual 'flash' on the page and the scroll bars jump a bit. It's not reloading the page nor is it adding a anchor link. In fact, it's using the exact same jQuery function as the other 'panels' on the page. </p> <p>The 'fix', for now, is to add an empty spacer div to the bottom of the page. This fixes the weird 'flash' on the lower toggled panels but, obviously, leaves a weird empty space at the bottom of the page.</p> <p>Has anyone ran into this issue and found a fix other than padding the height of the page?</p> http://stackoverflow.com/questions/1728479/jquery-toggleswitch-with-effect 0 jquery: .toggle(switch) with effect? maxp 2009-11-13T10:46:25Z 2009-11-13T14:50:45Z <p>i like the jquery.toggle(switch) function as i can do the following in one line;</p> <pre><code>$('.mytable').toggle(checkboxes[0].checked); </code></pre> <p>However i cant seem to integrate effects into this call (sliding / fading etc).</p> <p>Can anyone offer suggestions?</p> http://stackoverflow.com/questions/1727912/how-to-correct-a-jquery-syntax-error 0 How to correct a jQuery syntax error? peehskcalba 2009-11-13T08:35:14Z 2009-11-13T08:41:09Z <p>I'm trying to update a Total: (<code>span.wrap p span</code>) field at the bottom of a form using jQuery.</p> <p>I have a few checkboxes, each of which has an associated price contained within the <code>title</code> attribute like so: <code>title="$2"</code>.</p> <p>I'd the Total: field to update dynamically when the user clicks a checkbox. Here is the script I have, but it's throwing a syntax error as shown.</p> <pre><code>$("input:checkbox").toggle( var v = $(this).attr("title").substr(-1) * 1; // syntax error here. subtstr() eliminates the $ sign var t = $("span.wrap p span").text() * 1; // converts the string to a number function () { $("span.wrap p span").text(t + v); }, function () { $("span.wrap p span").text(t - v); } ); </code></pre> <p>Note: The total field has an initial value of <code>0</code>. There are four checkboxes; perhaps I need to use <code>each()</code>?</p> <p>Any ideas on how to make this work?</p> http://stackoverflow.com/questions/1726641/toggle-the-background-color-between-two-links-to-show-which-is-active-using-jquer 0 Toggle the Background Color between two links to show which is active using jquery and css? Mark 2009-11-13T01:51:23Z 2009-11-13T02:20:48Z <p>(Jquery) I have two divs that I'm toggling back and forth (show and hide) between on my page using a link to each. I want the link that is clicked on to change to a highlighted background color and when you click on the other it is highlighted and the previous goes back to normal.</p> <p>I've tried reworking the toggle code I've got for the divs to apply it to the css on the links but I can't figure it out.</p> <p>If anyone has an idea, I'd be grateful. Thank you.</p> http://stackoverflow.com/questions/1721707/motionpack-js-remember-state-with-cookie 0 motionpack.js remember state with cookie? Jeff 2009-11-12T11:57:17Z 2009-11-12T11:57:17Z <p>Hi there,</p> <p>I'm currently using Harry Maugans's motionpack.js toggle javascript file in order to collapse divs.</p> <p>I'd like to know if it's possible to put it so that there is a cookie value assigned to it? That way it remembers if a certain div has been collapsed or open. </p> <p>I'm currently new to javascript, so it'd really appreciate it if someone helps me out and talks me through the steps of using cookies.</p> <p>Here is the link to the original motionpack.js <a href="http://www.harrymaugans.com/2007/03/24/one-click-toggle-for-sliding-animated-div/" rel="nofollow">http://www.harrymaugans.com/2007/03/24/one-click-toggle-for-sliding-animated-div/</a></p> <p>Here is the motionpack.js file I have:</p> <pre><code>var timerlen = 5; var slideAniLen = 250; var timerID = new Array(); var startTime = new Array(); var obj = new Array(); var endHeight = new Array(); var moving = new Array(); var dir = new Array(); function slidedown(objname){ if(moving[objname]) return; if(document.getElementById(objname).style.display != "none") return; // cannot slide down something that is already visible moving[objname] = true; dir[objname] = "down"; startslide(objname); } function slideup(objname){ if(moving[objname]) return; if(document.getElementById(objname).style.display == "none") return; // cannot slide up something that is already hidden moving[objname] = true; dir[objname] = "up"; startslide(objname); } function startslide(objname){ obj[objname] = document.getElementById(objname); endHeight[objname] = parseInt(obj[objname].style.height); startTime[objname] = (new Date()).getTime(); if(dir[objname] == "down"){ obj[objname].style.height = "1px"; } obj[objname].style.display = "block"; timerID[objname] = setInterval('slidetick(\'' + objname + '\');',timerlen); } function slidetick(objname){ var elapsed = (new Date()).getTime() - startTime[objname]; if (elapsed &gt; slideAniLen) endSlide(objname) else { var d =Math.round(elapsed / slideAniLen * endHeight[objname]); if(dir[objname] == "up") d = endHeight[objname] - d; obj[objname].style.height = d + "px"; } return; } function endSlide(objname){ clearInterval(timerID[objname]); if(dir[objname] == "up") obj[objname].style.display = "none"; obj[objname].style.height = endHeight[objname] + "px"; delete(moving[objname]); delete(timerID[objname]); delete(startTime[objname]); delete(endHeight[objname]); delete(obj[objname]); delete(dir[objname]); return; } function toggleSlide(objname){ if(document.getElementById(objname).style.display == "none"){ // div is hidden, so let's slide down slidedown(objname); }else{ // div is not hidden, so slide up slideup(objname); } } </code></pre> <p>I am toggling divs by assigning an id to them and using:</p> <pre><code>&lt;a href="javascript:;" onmousedown="toggleSlide('divid');"&gt;&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/990622/how-to-make-it-smoother-with-toggle-slow 0 How to make it smoother with toggle ('slow') shin 2009-06-13T12:49:44Z 2009-11-12T04:06:11Z <p>I have the following code which works but it becomes a bit jumpy at the end of each toggle action.</p> <p>Will it be smoother if I toggle the paragraph?</p> <p>I am trying to get the paragraph, but I don't know how to do it.</p> <p>Can anyone help me please?</p> <p>Thanks in advance.</p> <pre><code>&lt;head&gt; &lt;style type="text/css"&gt; body {width: 660px; margin: 0 auto; } .toppara{ background-color: #FF9; } .morepara { background-color: #fff; display:none; } .togglebutn { color: #900; background-color: #FFF; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="section1"&gt; &lt;div class="toppara"&gt;&lt;p&gt;Content 1.&lt;/p&gt; &lt;/div&gt; &lt;div class="morepara"&gt; &lt;p&gt; Content 2. &lt;/p&gt; &lt;/div&gt; &lt;p class="togglebutn"&gt; &lt;a&gt;Show/Hide&lt;/a&gt; &lt;/p&gt; &lt;/div&gt;&lt;!-- section 1 --&gt; &lt;!-- section 2 --&gt; &lt;div id="section2"&gt; &lt;div class="toppara"&gt;&lt;p&gt;Content 3.&lt;/p&gt; &lt;/div&gt; &lt;div class="morepara"&gt; &lt;p&gt; Content 4. &lt;/p&gt; &lt;/div&gt; &lt;p class="togglebutn"&gt; &lt;a&gt;Show/Hide&lt;/a&gt; &lt;/p&gt; &lt;/div&gt;&lt;!-- section 2 --&gt; &lt;script language="javascript" type="text/javascript"&gt; $(function() { $('.togglebutn a').click( function(){ var $parentpara = $(this).parent().prev(); $parentpara.toggle('slow'); }); }); &lt;/script&gt; </code></pre> <p> </p> http://stackoverflow.com/questions/1719558/jquery-toggle-on-each 0 jQuery toggle on each? hollywood3224 2009-11-12T02:42:08Z 2009-11-12T03:37:13Z <p>im using jquery to toggle some paragraphs. its pretty easy with just one paragraph but say i have a very generic setup. the second paragraph is initially hidden with css.</p> <pre><code>&lt;p&gt;some text&lt;/p&gt; &lt;p&gt;some more text&lt;/p&gt; &lt;a href="#" class="more"&gt;read more&lt;/a&gt; &lt;p&gt;some text&lt;/p&gt; &lt;p&gt;some more text&lt;/p&gt; &lt;a href="#" class="more"&gt;read more&lt;/a&gt; </code></pre> <p>problem is that every time i click one of the "read more" links its shows the every second paragraph. i would just want it to show the second paragraph of the one clicked.</p> <p>very new to jquery...</p> http://stackoverflow.com/questions/1696055/how-to-toggle-number-of-rows-with-jquery 1 How to toggle number of rows with jquery? shin 2009-11-08T11:09:37Z 2009-11-08T11:22:13Z <p>I want to add Toggle show-rows like Google analytics top content.</p> <p>At the bottom of Google analytics top content, there is a dropdown option to select 20, 50 etc to toggle number of top content.</p> <p>I want to add this javascript to my dynamically generated product list.</p> <p>It seems like it uses onCharge in select tag.</p> <p>I want to use jquery for this function.</p> <p>Could anyone any advices for this or any resources?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1685989/jquery-checkbox-not-checking 0 jQuery checkbox not checking spirax 2009-11-06T07:28:45Z 2009-11-06T08:37:09Z <p>I have a form setup so that when you check a checkbox, the relevant UL will expand showing more options based on the choice. It works, but only when the user clicks the label of the checkbox. If the checkbox is clicked, the UL expands as expected, but the box doesn't get checked.</p> <p>Javascript:</p> <pre><code> jQuery(document).ready(function() { jQuery('.toggleUL').click(function() { var checkbox = jQuery(this).find('input'); var ul = jQuery(this).next('ul'); if (ul.css('display') == 'block') { ul.find('input').attr('checked', false); } if (checkbox.attr('checked') == false) { checkbox.attr('checked', true); } else { checkbox.attr('checked', false); } ul.slideToggle('slow'); return false; }); }); </code></pre> <p>HTML:</p> <pre><code> &lt;label class="toggleUL"&gt;&lt;input style="margin-right: 10px" type="checkbox" name="quoteWebsite" id="quoteWebsite" value="xxx" /&gt;xxx&lt;/label&gt; &lt;ul style="list-style-type: none; display: none"&gt; &lt;li style="margin-left: 20px"&gt;&lt;label&gt;&lt;input style="margin-right: 10px" type="checkbox" name="quoteWebsite1[]" id="quoteWebsite1" value="xxx" /&gt;xxx&lt;/label&gt;&lt;/li&gt; &lt;li style="margin-left: 20px"&gt;&lt;label&gt;&lt;input style="margin-right: 10px" type="checkbox" name="quoteWebsite1[]" id="quoteWebsite2" value="xxx" /&gt;xxx&lt;/label&gt;&lt;/li&gt; &lt;li style="margin-left: 20px"&gt;&lt;label&gt;&lt;input style="margin-right: 10px" type="checkbox" name="quoteWebsite1[]" id="quoteWebsite3" value="xxx" /&gt;xxx&lt;/label&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>The slideToggle() function wasn't working the way it should. When the box/label was clicked, the UL would expand then retract instantly. The only way I could get it to stop was to add 'return false;' which, of course, causes the checkbox not to check. Hence the checkbox.attr().</p> <p>Hacked up code, I know. But how can I get the checkbox to work? >.&lt;</p> http://stackoverflow.com/questions/1657145/jquery-slidedown-with-existing-height 0 Jquery - slideDown with existing height. maxp 2009-11-01T13:08:55Z 2009-11-01T13:59:21Z <p>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 the full height of the div? (i.e. remove the height restriction in the css class).</p> http://stackoverflow.com/questions/1644545/toggle-between-two-classes-in-jquery 1 Toggle between two classes in jQuery CAbbott 2009-10-29T15:29:19Z 2009-10-29T18:06:29Z <p>I'm trying to modify the icons for the <a href="http://jqueryui.com/demos/sortable/#portlets" rel="nofollow">jQuery UI portlets</a>. Rather than have a plus to minimize and a minus to expand, I wanted to switch them. </p> <p>I've only had limited success with it where the first time to click the minus it flips to a plus, but the plus never flips to a minus. Any help on this would be much appreciated.</p> <p>Here's a sample HTML:</p> <pre><code>&lt;script src="scripts/jquery-1.3.2.js" type="text/javascript" &gt;&lt;/script&gt; &lt;script src="scripts/ui/ui.core.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="scripts/ui/ui.sortable.js" type="text/javascript"&gt;&lt;/script&gt; &lt;div class="column"&gt; &lt;div class="portlet"&gt; &lt;div class="portlet-header"&gt;Links&lt;/div&gt; &lt;div class="portlet-content"&gt;Lorem ipsum dolor sit amet, consectetuer adipiscing elit&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>Here's what I came up with for the jQuery:</p> <pre><code>&lt;script type="text/javascript"&gt; $(function() { $(".column").sortable({ connectWith: '.column' }); $(".portlet").addClass("ui-widget ui-widget-content ui-helper-clearfix ui-corner-all") .find(".portlet-header") .addClass("ui-widget-header ui-corner-all") .prepend('&lt;span class="ui-icon ui-icon-minusthick"&gt;&lt;/span&gt;') .prepend('&lt;span class="ui-icon ui-icon-closethick"&gt;&lt;/span&gt;') .end() .find(".portlet-content"); $(".portlet-header .ui-icon-minusthick").click(function() { $(this).removeClass("ui-icon-minusthick"); $(this).addClass("ui-icon-plusthick"); $(this).parents(".portlet:first").find(".portlet-content").toggle(); }); $(".portlet-header .ui-icon-plusthick").click(function() { $(this).removeClass("ui-icon-plusthick"); $(this).addClass("ui-icon-minusthick"); $(this).parents(".portlet:first").find(".portlet-content").toggle(); }); $(".portlet-header .ui-icon-closethick").click(function() { $(this).parents(".portlet:first").toggle(); }); $(".column").disableSelection(); }); &lt;/script&gt; </code></pre> <p><hr /> <strong>EDIT</strong>: Here's the original javascript from the jQuery UI demo site:</p> <pre><code>&lt;script type="text/javascript"&gt; $(function() { $(".column").sortable({ connectWith: '.column' }); $(".portlet").addClass("ui-widget ui-widget-content ui-helper-clearfix ui-corner-all") .find(".portlet-header") .addClass("ui-widget-header ui-corner-all") .prepend('&lt;span class="ui-icon ui-icon-plusthick"&gt;&lt;/span&gt;') .end() .find(".portlet-content"); $(".portlet-header .ui-icon").click(function() { $(this).toggleClass("ui-icon-minusthick"); $(this).parents(".portlet:first").find(".portlet-content").toggle(); }); $(".column").disableSelection(); }); &lt;/script&gt; </code></pre> <p>I'm not exactly sure how they were able to get the plus and minus to toggle correctly.</p> http://stackoverflow.com/questions/1643780/prototype-accordian-using-images-within-div-classaccordion-toggle 0 Prototype / Accordian using images within <div class="accordion-toggle"> Jake R 2009-10-29T13:35:11Z 2009-10-29T13:35:11Z <p>Heyas,</p> <p>The problem I'm experiencing;</p> <p>Using Prototype with Accordion I'm having problems using images within the . I'm extremely unfamiliar with jscript and web concepts so I thought it better to ask you guys before i break anything!</p> <pre><code>/* Simple Accordion Script * Requires Prototype and Script.aculo.us Libraries * By: Brian Crescimanno &lt;brian.crescimanno@gmail.com&gt; * http://briancrescimanno.com * This work is licensed under the Creative Commons Attribution-Share Alike 3.0 * http://creativecommons.org/licenses/by-sa/3.0/us/ */ if (typeof Effect == 'undefined') throw("You must have the script.aculo.us library to use this accordion"); var Accordion = Class.create({ initialize: function(id, defaultExpandedCount) { if(!$(id)) throw("Attempted to initalize accordion with id: "+ id + " which was not found."); this.accordion = $(id); this.options = { toggleClass: "accordion-toggle", toggleActive: "accordion-toggle-active", contentClass: "accordion-content" } this.contents = this.accordion.select('div.'+this.options.contentClass); this.isAnimating = false; this.maxHeight = 0; this.current = defaultExpandedCount ? this.contents[defaultExpandedCount-1] : this.contents[0]; this.toExpand = null; this.checkMaxHeight(); this.initialHide(); this.attachInitialMaxHeight(); var clickHandler = this.clickHandler.bindAsEventListener(this); this.accordion.observe('click', clickHandler); }, expand: function(el) { this.toExpand = el.next('div.'+this.options.contentClass); if(this.current != this.toExpand){ this.toExpand.show(); this.animate(); } }, checkMaxHeight: function() { for(var i=0; i&lt;this.contents.length; i++) { if(this.contents[i].getHeight() &gt; this.maxHeight) { this.maxHeight = this.contents[i].getHeight(); } } }, attachInitialMaxHeight: function() { this.current.previous('div.'+this.options.toggleClass).addClassName(this.options.toggleActive); if(this.current.getHeight() != this.maxHeight) this.current.setStyle({height: this.maxHeight+"px"}); }, clickHandler: function(e) { var el = e.element(); if(el.hasClassName(this.options.toggleClass) &amp;&amp; !this.isAnimating) { this.expand(el); } }, initialHide: function(){ for(var i=0; i&lt;this.contents.length; i++){ if(this.contents[i] != this.current) { this.contents[i].hide(); this.contents[i].setStyle({height: 0}); } } }, animate: function() { var effects = new Array(); var options = { sync: true, scaleFrom: 0, scaleContent: false, transition: Effect.Transitions.sinoidal, scaleMode: { originalHeight: this.maxHeight, originalWidth: this.accordion.getWidth() }, scaleX: false, scaleY: true }; effects.push(new Effect.Scale(this.toExpand, 100, options)); options = { sync: true, scaleContent: false, transition: Effect.Transitions.sinoidal, scaleX: false, scaleY: true }; effects.push(new Effect.Scale(this.current, 0, options)); var myDuration = 0.45; new Effect.Parallel(effects, { duration: myDuration, fps: 35, queue: { position: 'end', scope: 'accordion' }, beforeStart: function() { this.isAnimating = true; this.current.previous('div.'+this.options.toggleClass).removeClassName(this.options.toggleActive); this.toExpand.previous('div.'+this.options.toggleClass).addClassName(this.options.toggleActive); }.bind(this), afterFinish: function() { this.current.hide(); this.toExpand.setStyle({ height: this.maxHeight+"px" }); this.current = this.toExpand; this.isAnimating = false; }.bind(this) }); } }); document.observe("dom:loaded", function(){ accordion = new Accordion("test-accordion", 2); })&gt; </code></pre> http://stackoverflow.com/questions/1638031/jquery-toggle-question 0 JQuery: Toggle question Tedi 2009-10-28T15:31:47Z 2009-10-28T15:51:25Z <p>How do you fire a JQuery toggled event once, and only once, another JQuery toggled event has been completed?</p> <p>I have the following:</p> <ul> <li>I have <code>&lt;div id="displayDivWhenPageLoads"&gt;...&lt;/div&gt;</code> - this DIV is show (visible) when the web page loads.</li> <li>I also have <code>&lt;div id="displayDivWhenToggledSelected"&gt;...&lt;/div&gt;</code> - this DIV is hidden (<code>display:none</code>) when the web page first loads.</li> </ul> <p>What I want to do is when someone presses my JQuery toggle action button, it</p> <ol> <li>toggles the div=displayDivWhenPageLoads so that the div is no longer displayed (display:none)</li> <li>Then once, and only once, the displayDivWhenPageLoads DIV has been toggled so that it's no longer visible, then toggled the div=displayDivWhenToggledSelected so that this div now becomes toggled visibile.</li> </ol> <p>Make sense?</p> <p>I've been looking at the API <a href="http://docs.jquery.com/Effects/slideToggle#speedcallback" rel="nofollow">http://docs.jquery.com/Effects/slideToggle#speedcallback</a> and it's just not clear to me on how to fire off a second toggled once the first toggled has been completed.</p> http://stackoverflow.com/questions/1628912/jquery-slidetoggle-on-links 0 JQuery: SlideToggle on links? Tedi 2009-10-27T05:30:33Z 2009-10-27T05:48:35Z <p>How do I perform a JQuery 'slidetoggle' effect using a hyperlink, instead of an input button, as the action item?</p> <p>At the JQuery refence page</p> <p><a href="http://docs.jquery.com/Effects/slideToggle#speedcallback" rel="nofollow">http://docs.jquery.com/Effects/slideToggle#speedcallback</a></p> <p>It only gives an example of using a form input button.</p> <p>I would like to have instead of a button, a hyperlink to be the toggle clickable action.</p> http://stackoverflow.com/questions/1625541/jquery-toggle-and-layout-issues-when-used-in-table 0 jquery.toggle and layout issues when used in table DA 2009-10-26T15:41:51Z 2009-10-26T18:53:27Z <p>I have a table. Each row is a record. If you click on a row (record), via jquery, I create a new TR below it, and then insert a new table (related sub-set of data pertaining to the above record) via AJAX. This is first loaded and then I expand the TR in a nice animated fashion.</p> <p>It looks good.</p> <p>Now that it's loaded and expanded, I want to easily toggle this TR so one can collapse them and expand them without reloading the content via AJAX.</p> <p>The obvious/simplest option is to change the event handler for the trigger and give it a TOGGLE event. </p> <p>Functionally, this works. Aesthetically, though, it's a completely mess.</p> <p>When I first .toggle to close, the content of the new TR does collapse nicely, but the rest of the parent table doesn't follow until the TR is completely collapsed, then the parent table quickly collapses to fill the gap. This is jarring.</p> <p>Then, on the next .toggle to open, the child table animates outside of the parent table, then quickly collapses its width. Also very jarring and now I'm left with a very narrow table compared to its parent. </p> <p>If I omit the animation from the toggle event, it works fine, albeit without the nice transition. I'm guessing this is perhaps more CSS related the jQuery related? Any pointers as to what I might need to declare CSS-wise to keep this erratic visual behavior from happening? </p> <p>EDIT: per matt's request, markup/script:</p> <pre><code>&lt;!-- tr of parent table --&gt; &lt;tr&gt; &lt;td&gt;&lt;a href="" class="expandable-expanded"&gt;link&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;/td&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;!-- this is the tr I create via jQuery and then want to toggle via above link --&gt; &lt;tr class="expandedContent"&gt; &lt;td colspan="3"&gt; &lt;div class="loadedContent" style="display: block;"&gt;&lt;div&gt; ... my nested table is here ... &lt;/div&gt;&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; </code></pre> <p>The jquery I use for the toggle:</p> <pre><code>$("td a.expandable").click(function(){ //jquery here that does the initial creation of the TR and loading of the AJAX... // after loading ajax, remove the event $(this).unbind('click'); // and then attach the new toggle event $(this).closest("tr").next("tr.expandedContent").toggle("slow"); return false; }); </code></pre> http://stackoverflow.com/questions/1308818/jquery-translate-toggle-how-to-link-the-two 1 jQuery translate + toggle, how to link the two? connections 2009-08-20T21:07:56Z 2009-10-25T14:46:07Z <p>I'm currently working on a jQuery script that will translate the site's text into a foreign language . I'm utilizing Google Translate API for this. I would like the page to include a link that says En Espanol and when the user clicks on En Espanol, the body of the page gets translated into Spanish with the exception of that link which says In English - when the user clicks on that link, the body of the page will revert back to English. The following code below is what I have so far. Any help will be greatly appreciated. Thank you.</p> <p>JQuery:</p> <pre><code>$(document).ready(function(){ // hide all blocks that have class hide //$('.hide').hide(); // toggle link1 with container1 // using chaining for performance and ease // changing html of link $('.showhide').toggle(function(){ //$(this).parent().next().slideDown('slow').removeClass('hide').preventDefault; $(this).html('English'); },function(){ //$(this).parent().next().slideUp('slow').addClass('hide').preventDefault; $(this).html('En Espanol'); }) }); </code></pre> <p>HTML:</p> <pre><code>&lt;p&gt;&lt;a id="link1" class="showhide" href="#container1" onclick="translate('es');"&gt; En Espanol&lt;/a&gt;&lt;/p&gt; &lt;!--Calls Google Translate via div --&gt; &lt;div id="translation"&gt;&lt;/div&gt; &lt;div id="article"&gt; &lt;p&gt;Google Inc is set to introduce on Tuesday a new Web browser designed to handle text and graphics.&lt;/p&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1620794/binding-collection-to-tool-bar-buttons-and-getting-current-selected-item 0 Binding collection to tool bar buttons and getting current selected item Sanan 2009-10-25T12:36:47Z 2009-10-25T12:39:16Z <p>Here is the scenario. I'm having a List in my view model and I want to generate a toolbar - each button representing a CustomObject which will have the tooltip, icon etc.</p> <p>I'm defining a template to display CustomObject in a toolbar button and also define the toolbar button ItemSource to the viewmodel collection and ItemTemplate to the one defined.</p> <p>In addition I'm having another propery in the view model SelectedCustomObject which should represent the object clicked in the toolbar and requires a two-way binding too.</p> <p>I'm not able to achieve setting this property on the view model through binding. To summarize, how can I bind the togglebutton click to set the SelectedCustomObject property in the view model through binding?</p> http://stackoverflow.com/questions/1592973/jquery-chaining-and-toggle-not-running 0 jQuery chaining and toggle not running Erik Z 2009-10-20T07:23:28Z 2009-10-20T07:30:28Z <p>If I run this code,</p> <pre><code>var waitRow = $(this).parent().parent().next().get(0); $(waitRow).children('td:nth-child(2)').html('some text').toggle(); </code></pre> <p>toggle is not called.</p> <p>If I instead write the following code it works. Why?</p> <pre><code>var waitRow = $(this).parent().parent().next().get(0); $(waitRow).children('td:nth-child(2)').html('some text'); $(waitRow).toggle(); </code></pre> http://stackoverflow.com/questions/1581479/jquery-accordion-links-do-not-work 0 jQuery accordion links do not work Stacie 2009-10-17T05:18:13Z 2009-10-17T05:35:57Z <p>I have no idea what I am doing, but I found some code, that I am using to create a accordion dropdown for a help page on my blog. Everything is working perfectly, but when I click on a link in the dropdown, it closes the accordion and does not go to the external site. I have no idea what I am doing wrong. Is there a way to fix this?</p> <p>Here is the code I am using...</p> <pre><code>jQuery(function() { jQuery("li.profile a").click(function(e) { jQuery(e.target).closest("li").find("p").toggle(); return false; }) </code></pre> <p>});</p> <p>This is the html...</p> <pre><code>&lt;ul &gt; &lt;li class="profile"&gt; &lt;a href="#"&gt;Section 1&lt;/a&gt; &lt;p style="display: none;"&gt; &lt;a href="www.google.com"&gt;Click here&lt;/a&gt; Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate. &lt;/p&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre> <p>If there is a fix for this, please dumb it down for me so I will understand what I need to do. Thanks in advance!</p> http://stackoverflow.com/questions/1575444/onlick-on-link-display-only-div-make-other-body-balck-or-shaded 0 onlick on link display only div, make other body balck or shaded bpatel 2009-10-15T22:18:47Z 2009-10-16T21:44:08Z <p>I have a page which has anchor tag clicking on which ma div tag toggles. I want to make whole body of page black or shaded except that Div tag.</p> http://stackoverflow.com/questions/1575299/how-to-code-js-toggle-to-print-in-automatically-expanded-view 0 How to code JS toggle to print in automatically expanded view? TranzAct 2009-10-15T21:48:55Z 2009-10-15T22:10:45Z <p>First, here’s the page question: <a href="http://www.tranzact.com/test/solution%5Ffreightfaqs.html" rel="nofollow">http://www.tranzact.com/test/solution_freightfaqs.html</a></p> <p>I used a simple “Print Page” function (below):</p> <pre><code>&lt;a href="#" onclick="window.print();return false;"&gt;Print Page&lt;/a&gt; </code></pre> <p>Below is the toggle.js script:</p> <pre><code>function toggle(theID) { if(document.getElementById(theID).style.display=='none' ){ document.getElementById(theID).style.display = '';} else{ document.getElementById(theID).style.display = 'none';} } </code></pre> <p>This results with the page printing “as is.” That is, if none of the toggles are expanded, only the questions print out.</p> <p><strong>How can I make the print button automatically expand all of the answers when printing?</strong></p> <p>Appreciate any help given. Thank you.</p>