[jQuery] Re: show/hide div on select change

2009-11-18 Thread mtuller
Thanks. On Nov 18, 1:50 pm, Charlie Griefer wrote: > You're missing a $ on this line: > > ('#id_status').change(function() { > > Change to: > > $('#id_status').change(function() { > > unsolicited word of advice... run firebug :) > > >

[jQuery] show/hide div on select change

2009-11-18 Thread mtuller
I am trying to have a div show and hide based on the value of a select list. I have looked at a number of examples, but can't seem to get it to work. Would appreciate someone taking a look at what I have and giving me any advice. $(document).ready(function() { $('div.textfield1').hide();

[jQuery] link to images from web root

2009-09-17 Thread mtuller
I am adding a lightbox script that has images for the buttons. I will want to use this script in more than one location, so I want to put the scripts and the images in a central location. The script calls for the images to be in the same folder that is calling the script, and I want the images to

[jQuery] Hide/Show based on radio button selected

2009-09-14 Thread mtuller
I am trying to create a script that will display content based on if a radio button is selected, and if the other is selected would hide the content. Now, each of these radio buttons are part of a radio group, so their names are the same. Most examples show input:radio [...@name=item] Since I have

[jQuery] Using radio buttons to show disclose form items

2009-09-11 Thread mtuller
I want to make is so that if I select one radio button, it will display checkboxes, and if I select the other, it will hide the checkboxes. One radio button says select all, which would hide, and the other is Choose what to select, which would disclose the checkboxes. If I have $(document).ready(