[jQuery] Re: append problem in ie7

2008-03-05 Thread Iair Salem
Try: $(this).text(resources[lang][id]); On 5 mar, 07:07, Don <[EMAIL PROTECTED]> wrote: > hi guys, > Im new to jquery. I have this problem and I think you guys can answer > it. Here's the source code of the file that I am working on. The > purpose of this script is to change the label into differ

[jQuery] Re: append problem in ie7

2008-03-05 Thread Iair Salem
I don't see my previous message... Try: $(this).text(resources[lang][id]); On 5 mar, 07:07, Don <[EMAIL PROTECTED]> wrote: > hi guys, > Im new to jquery. I have this problem and I think you guys can answer > it. Here's the source code of the file that I am working on. The > purpose of this scrip

[jQuery] Re: .append() problem when used with .each

2007-12-01 Thread pquery
Thanks for your detailed response, much appreciated. I added the event handler you mentioned in A) in it works as expected.

[jQuery] Re: .append() problem when used with .each

2007-12-01 Thread Suni
This has nothing to do with .each. You've propably just missed how the selectors and binding work, or how the ajax works. What your script does currently: 1) You create a link and append it to #col1 2) You send an ajax-request (Which is asynchronous, meaning that the script keeps running and doe

[jQuery] Re: $().append() problem

2007-04-16 Thread [EMAIL PROTECTED]
Yes. That makes more sense. Thanks. On Apr 16, 9:28 pm, "Jeff S." <[EMAIL PROTECTED]> wrote: > Are you sure appending is what you want to do? Appending to an > does not really make sense to me. Maybe using the after() or > before() would make more sense. > > DIV beforeappend: > > DIV afterapp

[jQuery] Re: $().append() problem

2007-04-16 Thread Jeff S.
Are you sure appending is what you want to do? Appending to an does not really make sense to me. Maybe using the after() or before() would make more sense. DIV before append: DIV after append: INPUT before append: INPUT after append: On Apr 16, 9:33 pm, "[EMAIL PROTECTED]" <[EMAIL PROT

[jQuery] Re: $().append() problem

2007-04-16 Thread [EMAIL PROTECTED]
I just noticed that I can append OK in IE6 to a block, but not to a form element. In other words, appending to: <- does not work Appending to: <- works On Apr 16, 8:13 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I am appending a hidden form field similar to this: > > $("#some_id")