Re: [jQuery] $().load didn't works ini IE6

2006-09-27 Thread Donny Kurnia
This morning I tried a different approach. I had a select with id='propinsi', that had a list of province. When it change, I'd like to change the options in the select with id='kota'. I use the following code: script type=text/javascript!-- $(#propinsi).change(function () {

Re: [jQuery] $().load didn't works ini IE6

2006-09-26 Thread Donny Kurnia
On 9/26/06, Michael Geary [EMAIL PROTECTED] wrote: I need help to make the following code works in IE : document.writeln(select name=\+name+\ id=\+name+\+((multiple!=null)? +multiple:)+); var tablename = some_table; $(#+name).load(table_query.php, {table: tablename});

Re: [jQuery] $().load didn't works ini IE6

2006-09-25 Thread Dan Atkinson
While I'm I can't answer your problem, I can say that load works fine for me in IE6, and for it not to work would have been noticed much sooner as it's quite a widely used part of jQuery. The test suite also confirms that it's working as well. Ok So... name... It's used further up the

Re: [jQuery] $().load didn't works ini IE6

2006-09-25 Thread Donny Kurnia
On 9/25/06, Dan Atkinson [EMAIL PROTECTED] wrote: While I'm I can't answer your problem, I can say that load works fine for me in IE6, and for it not to work would have been noticed much sooner as it's quite a widely used part of jQuery. The test suite also confirms that it's working as

Re: [jQuery] $().load didn't works ini IE6

2006-09-25 Thread Michael Geary
I need help to make the following code works in IE : document.writeln(select name=\+name+\ id=\+name+\+((multiple!=null)? +multiple:)+); var tablename = some_table; $(#+name).load(table_query.php, {table: tablename}); document.writeln(\/select); Script

Re: [jQuery] $().load didn't works ini IE6

2006-09-25 Thread Michael Geary
From: Dan Atkinson Also, I'm unsure why you want to use document.writeln as I find jQuery's methods much more compact and neat. I don't know if it relates to this specific code, but there are things you can do with document.writeln that you can't do with DOM manipulation. Specifically, the

[jQuery] $().load didn't works ini IE6

2006-09-24 Thread Donny Kurnia
I need help to make the following code works in IE : document.writeln(select name=\+name+\ id=\+name+\+((multiple!=null)? +multiple:)+); var tablename = some_table; $(#+name).load(table_query.php, {table: tablename}); document.writeln(\/select); Script