1
vote
1answer
33 views
How to toggle number of rows with jquery?
I want to add Toggle show-rows like Google analytics top content.
At the bottom of Google analytics top content, there is a dropdown option to select 20, 50 etc to toggle number o …
0
votes
3answers
33 views
jQuery checkbox not checking
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 th …
0
votes
1answer
24 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 …
1
vote
2answers
67 views
Toggle between two classes in jQuery
I'm trying to modify the icons for the jQuery UI portlets. Rather than have a plus to minimize and a minus to expand, I wanted to switch them.
I've only had limited success wit …
0
votes
0answers
43 views
Prototype / Accordian using images within <div class=”accordion-toggle”>
Heyas,
The problem I'm experiencing;
Using Prototype with Accordion I'm having problems using images within the . I'm extremely unfamiliar with jscript and web concepts so I thou …
0
votes
2answers
51 views
JQuery: Toggle question
How do you fire a JQuery toggled event once, and only once, another JQuery toggled event has been completed?
I have the following:
I have <div id="displayDivWhenPageLoads"> …
0
votes
3answers
41 views
JQuery: SlideToggle on links?
How do I perform a JQuery 'slidetoggle' effect using a hyperlink, instead of an input button, as the action item?
At the JQuery refence page
http://docs.jquery.com/Effects/slideT …
0
votes
2answers
41 views
jquery.toggle and layout issues when used in table
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 …
0
votes
3answers
49 views
jQuery chaining and toggle not running
If I run this code,
var waitRow = $(this).parent().parent().next().get(0);
$(waitRow).children('td:nth-child(2)').html('some text').toggle();
toggle is not called.
If I instead …
3
votes
4answers
79 views
Textmate toggle collapse/expand CSS rule command?
Does anyone know of a command (not a macro) for Textmate / E Text Editor / Redcar / etc. that will collapse a multi-line CSS rule down to one line OR, if the rule is already on one …
0
votes
2answers
51 views
Simple Toggle with Mootools: What am I doing wrong?
<script type="text/javascript">
$(document).ready(function(){
$("#trigger").click(function () {
$("#trigger-banner").toggle();
});
</script>
Help? Thanks! …
1
vote
3answers
72 views
Stopping a jquery function from acting multiple times
I have a toggle fade effect but when you click the button multiple times it fades in and out more than once. (So if i click the fade id 20 times fast it will fade in and out multip …
0
votes
1answer
24 views
jQuery accordion links do not work
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 …
1
vote
6answers
154 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(){
$(this).fin …
0
votes
1answer
25 views
How to code JS toggle to print in automatically expanded view?
First, here’s the page question:
http://www.tranzact.com/test/solution_freightfaqs.html
I used a simple “Print Page” function (below):
<a href="#" onclick="window.print();retu …
