[jQuery] Re: Can't Add a checked=checked Attribute to Input tag

2008-02-25 Thread Joe
Rob, Thank you very much for the detailed response. Very insightful indeed. Cheers. Joe On Feb 23, 1:28 am, RobG [EMAIL PROTECTED] wrote: On Feb 23, 4:55 am, Joe [EMAIL PROTECTED] wrote: Yes I did. Strangely enough, what I initially wrote worked in a simply HTML page without much

[jQuery] Re: Can't Add a checked=checked Attribute to Input tag

2008-02-22 Thread Joe
Yes I did. Strangely enough, what I initially wrote worked in a simply HTML page without much else going on. I may have to parse thru the page that I'm working on to find if there is some sort of conflict. Thanks! On Feb 22, 1:37 am, Karl Rudd [EMAIL PROTECTED] wrote: Have you tried

[jQuery] Re: Can't Add a checked=checked Attribute to Input tag

2008-02-22 Thread RobG
On Feb 23, 4:55 am, Joe [EMAIL PROTECTED] wrote: Yes I did.  Strangely enough,  what I initially wrote worked in a simply HTML page without much else going on.  I may have to parse thru the page that I'm working on to find if there is some sort of conflict. The checked property is a

[jQuery] Re: Can't Add a checked=checked Attribute to Input tag

2008-02-21 Thread Karl Rudd
Have you tried $(...).attr( 'checked', true ) ? Karl Rudd On Fri, Feb 22, 2008 at 9:56 AM, Joe [EMAIL PROTECTED] wrote: Very simply, I want this function to attach the attribute checked=checked to the input with the id=ext[agree]Y. The following code does not do this and I'm not sure