I haven't tried the following in 1.3.0/1 - I went to upgrade something
to 1.3.2 and noticed the form didn't work any more.

I have a radio button that I want to reprocess a the form when it is
changed.  I read somewhere that some browser (probably IE) didn't
record the onchange of radios but that "click" essentially did the
same thing.  So that's what I did:


$("input[name='number_tickets']").click(adjust_payment);


This works in 1.2.6  but in 1.3.2 it doesn't.  But if I change it to

 $("input[name='number_tickets']").live('click',adjust_payment);  it
does work in 1.3.2

I'm using FF3 with firebug


Reply via email to