5
votes
9answers
2k 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 …
3
votes
4answers
113 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 line, expand it out …
3
votes
2answers
273 views
JQuery closest() help
So I have several containers with this markup on a page:
<div class="box w400">
<div class="box-header">
<span …
2
votes
3answers
171 views
changing an element’s background using the CSS property
Hello guys,
I have a div with a background, and I'd like to change the background's position on click.
This is my jQuery snippet :
$('#sprite').click(function() {
…
2
votes
8answers
448 views
jQuery.each() trouble
I will try to keep this short. I'm trying to create boxes of text that hide or show when user clicks on a expand button. I'm using the toggle() method.
The markup is like this:
<span …
2
votes
4answers
587 views
jQuery toggle next two elements
I have a form select element that, when a certain value is selected, will toggle two other elements on the page (a dt / dd pair).
The event is triggered correctly, but I can't get the elements to …
2
votes
3answers
4k 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 …
1
vote
1answer
43 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 of top content.
I …
1
vote
2answers
171 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 with it where the first …
1
vote
3answers
93 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 multiple times) How would …
1
vote
6answers
200 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(){
…
1
vote
1answer
78 views
Toggling a blog post loop excerpts with jQuery
I'd like to reveal only post titles on my blog posts loop, and when the title is clicked -- the excerpt will appear below.
So far I got this:
$("#postTitle").click(function () {
…
1
vote
2answers
249 views
jQuery translate + toggle, how to link the two?
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 …
1
vote
3answers
170 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 …
1
vote
4answers
218 views
JQuery toggle Q&A: individual Q&As don’t operate correctly unless you click on Open All/Close All first
I have a Q&A list with "Open All/Close All" at the top with individual open and close image buttons that toggle when clicked. That works fine.
Then follow individual Q&As, and each has its …
