[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-22 Thread Mika Tuupola
On Oct 20, 2007, at 5:20 PM, Karl Swedberg wrote: One other Firefox add-on that allows you to see the *generated* source is "Web Developer" toolbar: http://chrispederick.com/work/web-developer/ Click on the "View Source" menu, and then choose "View Generated Source." Web Developer, along

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-22 Thread Mika Tuupola
On Oct 19, 2007, at 8:31 PM, Yaz wrote: I have a script that basically just reads some data from an xml file, then the data gets loaded into a dropdown, by dynamically creating tags. I had problem with IE and selects earlier. Found out that it needs both .val() and .append() calls. Maybe

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-20 Thread Karl Swedberg
en you say 'no results', what do you mean? No results when you submit the form? Brook -Original Message- From: jquery-en@googlegroups.com [mailto:jquery- [EMAIL PROTECTED] On Behalf Of Yaz Sent: October 19, 2007 11:59 AM To: jQuery (English) Subject: [jQuery] Re: AJAX and dynam

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-20 Thread Brook Davies
jQuery (English) Subject: [jQuery] Re: AJAX and dynamically created dropdowns With the select plugin I get the same results. Added the form tag. Still no results. Btw, I noticed that even though in Firefox the dropdown does get populated, at view source there is no list of schools Thank

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-19 Thread Chris Jordan
Yaz, View Source will never show you dynamically generated content. Download the FireFox extension: View Source Chart. It's quite handy, and shows you dynamically generated content. It's often helped me to figure out problems where I really need

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-19 Thread Yaz
With the select plugin I get the same results. Added the form tag. Still no results. Btw, I noticed that even though in Firefox the dropdown does get populated, at view source there is no list of schools Thanks for the suggestion guys. -yaz On Oct 19, 2:31 pm, Jack Killpatrick <[EMAIL PROT

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-19 Thread Yaz
Nop. Just tested and its the same. On Oct 19, 2:15 pm, "Chris Jordan" <[EMAIL PROTECTED]> wrote: > Could it be because you're name and id are identical? > > > > > Perhaps IE doesn't like this? > > Just a guess. > > Chris > > On 10/19/07, Yaz <[EMAIL PROTECTED]> wrote: > > > > > > > Hello everyo

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-19 Thread Jack Killpatrick
FWIW, I've never had any problems with id and name being the same on controls in IE. I don't see a tag on the page, maybe that's the issue? You might also want to try this: http://www.texotela.co.uk/code/jquery/select/ - Jack Chris Jordan wrote: Could it be because you're name and id are i

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-19 Thread Chris Jordan
Could it be because you're name and id are identical? Perhaps IE doesn't like this? Just a guess. Chris On 10/19/07, Yaz <[EMAIL PROTECTED]> wrote: > > > Hello everyone, > > I have a script that basically just reads some data from an xml file, > then the data gets loaded into a dropdown, by