[jQuery] Re: adding a radio button (Firefox vs. IE)

2008-08-25 Thread Chris Hall
Thanks a million, Karl! On Aug 25, 11:14 am, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hey Chris, > > The problem is that you have an improperly nested form element. It   > should work if you do this ... > > >         >         ... >         > > > instead of this ... > > >         >    

[jQuery] Re: adding a radio button (Firefox vs. IE)

2008-08-25 Thread Karl Swedberg
Hey Chris, The problem is that you have an improperly nested form element. It should work if you do this ... ... instead of this ... ... I took the html from your page and pasted it up here wi

[jQuery] Re: adding a radio button (Firefox vs. IE)

2008-08-25 Thread Chris Hall
Thanks That has been corrected, but just as you guessed that was not the issue. The code has been updated here: http://www.leaguefighter.com/test.php Select any of the radio buttons, then click the link TEST and click on the new radio button. It works for me in IE but not Firefox. I'm sure

[jQuery] Re: adding a radio button (Firefox vs. IE)

2008-08-25 Thread Mike Alsup
> var myinput = '' + > response + ''; That is not a valid input tag. Per the DTD, input tags should not have any "content": ' + response + '';