Re: [jQuery] Bugs in 1 and 1.01

2006-09-02 Thread Andrew Buzzell
Great! I could have sworn some of the docs and visualjquery (nice work Yehuda) still had set yesterday, but I'm seeing attr now. When I'm debugging jquery problems, I have a habit of switching between three or four different versions I have kicking around, and I know one of them did work with

[jQuery] Bugs in 1 and 1.01

2006-09-01 Thread Andrew Buzzell
I didn't see a way to post this in trac, so if I ought to have, please advise. It seems that set (both name:value and hash) is not working, as well as removeclass on multiple classes (and, of course, toggleclass with multiple classes). ___ jQuery

[jQuery] ToggleClass and parents();

2006-08-18 Thread Andrew Buzzell
With a checkbox inside of a label, I was trying to toggle a class on the label based on whether the input was checked or not. I tried every permutation of: $(.checkbox).change(function(){ $(this).parent().toggleClass('selected'); }); label for=testinput id=test type=checkbox