[jQuery] self.attr(innerHTML, res.responseText) - IE 7 failing

2007-01-15 Thread lukas | dressy vagabonds
hi everybody,

just found out about jQuery 2 weeks ago, started to integrate it in a  
website of mine (heart.coffeeandrecords.com) about 2 days ago, and  
absolutely learned to love it!! it's the best and slimmest javascript  
library with the most elegant way of getting things done that i've  
seen in a long time!!

today i switched to jQuery 1.1 and suddenly a lot of things don't  
seem to work like they did before any longer, even after checking the  
compat mode and rewriting the stuff that needed to be rewritten.

Issue 1: self.attr(innerHTML) doesn't work in IE 7, self.html 
(value) does, so that was any easy fix
Issue 2: $(#el).load doesn't support post params any longer
Issue 3: i can't found the svn repository

is there already a work around for that?

really appreciate the help as i absolutely love that library

keep up the grand work!!


best regards

lukas

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] self.attr(innerHTML, res.responseText) - IE 7 failing

2007-01-15 Thread Mike Alsup
Hi Lucas,

 Issue 2: $(#el).load doesn't support post params any longer

This is a bug and will be fixed.  You can fix it in your own copy by
editing this line in the load function:

if ( jQuery.isFunction( params.constructor ) ) {

Change it to this:

if ( jQuery.isFunction( params ) ) {


 Issue 3: i can't found the svn repository

I think svn is temporarily down due to high server traffic.

Mike

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] self.attr(innerHTML, res.responseText) - IE 7 failing

2007-01-15 Thread lukas | dressy vagabonds
hei mike :-),

thanks for the very fast help :-)

best regards

lukas

Am 16.01.2007 um 00:34 schrieb Mike Alsup:

 Hi Lucas,

 Issue 2: $(#el).load doesn't support post params any longer

 This is a bug and will be fixed.  You can fix it in your own copy by
 editing this line in the load function:

 if ( jQuery.isFunction( params.constructor ) ) {

 Change it to this:

 if ( jQuery.isFunction( params ) ) {


 Issue 3: i can't found the svn repository

 I think svn is temporarily down due to high server traffic.

 Mike

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/