[jQuery] Livequery not reattaching handlers

2009-12-17 Thread Gremlyn1
I am trying to get this function work, and it does everything it should EXCEPT reattach the event handlers (which is the whole in using livequery!). Any ideas? $j(".versions").livequery('change', function() { var verid = $j(".versions option:selected"); var prodid = $j(this).attr('i

[jQuery] Re: Switch image source during toggle

2009-10-15 Thread Gremlyn1
Hoping for some help still... I see the jQueryUI site has drop downs that do what I want, there has to be a plugin or an easy way to do this somewhere! I don't mind if i have to implement a new, full toggle script to do it either. On Oct 7, 8:53 am, Gremlyn1 wrote: > Bump? > > On

[jQuery] Re: Switch image source during toggle

2009-10-07 Thread Gremlyn1
Bump? On Oct 5, 3:19 pm, Gremlyn1 wrote: > Sure, as I said I have the following function in place: > $j(document).ready(function() { >     $j('#answerbox').hide(); > >     $j('a.faq').click(function() { >         var faq_id = $j(this).attr('id');

[jQuery] Re: jQuery: noConflict

2009-10-05 Thread Gremlyn1
Try: var $j = jQuery.noConflict(); Then you would use: $j(document).ready(function() { doSomething(); }); On Oct 5, 2:14 pm, Dennis Madsen wrote: > I'm trying to use jQuery inside a CMS which use mootools - therefore I > use noConflict. > I have this sample code: > >        

[jQuery] Re: Switch image source during toggle

2009-10-05 Thread Gremlyn1
mes wrote: > Could you post your relevant HTML also with some kind of sampleimage > src and what you would like it to look like after it's been toggled? > > On Oct 2, 6:26 am, Gremlyn1 wrote: > > > I have some divs I am toggling and there is a little + signimageI > >

[jQuery] Switch image source during toggle

2009-10-02 Thread Gremlyn1
I have some divs I am toggling and there is a little + sign image I want to change to a - sign image when the toggle event occurs, but can't quite figure it out. Here is the toggle code I have (taken from a helpful post on here): $j(document).ready(function() { $j('#answerbox').hide(); $