Re: [jQuery] Broken Build

2006-10-08 Thread Franck Marcia
2006/10/8, Jörn Zaefferer [EMAIL PROTECTED]: the current build script seems to be broken: Only the ajax part of the complete jQuery file is parsed, resulting in a lite version with only ajax docs removed and api docs and tests with only ajax docs/tests. Doing some diff debugging by comparing

Re: [jQuery] Broken Build

2006-10-08 Thread Jörn Zaefferer
Franck Marcia schrieb: It's not because of the code but because of the data. There are many contributors now, using different OS which means different ways to insert a character when you strike enter :-) In short, the current regexp blockMatch in build/build/lite.js doesn't take '\r' into

[jQuery] jquery compressed: ret is not a function

2006-10-08 Thread patrickk
if I use jquery uncompressed, everything works fine. with jquery compressed, I get an error ret is not a function. any ideas? thanks, patrick ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Jörn Zaefferer
Hi folks, it's time for another release candiate, this time including even more bug fixes and nothing else. Source: http://joern.jquery.com/dist/jquery.js API Docs: http://joern.jquery.com/docs/ Testsuite: http://joern.jquery.com/test/ According to my tests, all 264 tests pass in FF1.5.0.7,

Re: [jQuery] Broken Build

2006-10-08 Thread Franck Marcia
2006/10/8, Jörn Zaefferer [EMAIL PROTECTED]: I tried your quick and dirty fix for lite: It worked but was awfully slow. This hack works for me and is fast: var blockMatch = /\s*\/\*\*\s*((.|\r\n|\r|\n)*?)\s*\*\/(\r\n|\r|\n)*/g; var f = readFile(arguments[0]).replace( blockMatch, \n ).replace(

[jQuery] IE6 performance tweak

2006-10-08 Thread Joe
This somehow improves the performance of IE6. Interesting object detection as well. Opinions on this method?http://www.hedgerwow.com/360/bugs/dom-fix-ie6-background-image-flicker.html All-new Yahoo! Mail - Fire up a more powerful email and get things done

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Webunity | Gilles van den Hoven
Jörn Zaefferer wrote: Hi folks, it's time for another release candiate, this time including even more bug fixes and nothing else. Hi Jorn, Why don't you commit these into SVN, or did you? It is a bit confusing if we have 2 releases for jQuery, especially for newbies -- Gilles

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Kurt Mackey
IE 6 passed all tests here. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: Sunday, October 08, 2006 5:40 AM To: jQuery Discussion. Subject: [jQuery] jQuery 1.0.2 RC2 Hi folks, it's time for another release candiate, this time

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Jörn Zaefferer
Webunity | Gilles van den Hoven schrieb: Why don't you commit these into SVN, or did you? It is a bit confusing if we have 2 releases for jQuery, especially for newbies I agree that it may be confusing. The idea was this: Get a release candidate out the door, let the list have a look at it,

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Mike Alsup
Test #38 fails in Opera 8.54. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Jörn Zaefferer
Mike Alsup schrieb: Test #38 fails in Opera 8.54. Any idea where to download that version? I can't find any download prior to Opera 9. -- Jörn ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Mike Alsup
Nope. I've just been hanging onto it so I can test stuff with it. I jarred up my installation if you want to try using that. I posted it here: http://malsup.com/jquery/op854.jar Mike Any idea where to download that version? I can't find any download prior to Opera 9.

Re: [jQuery] Interface Autocomplete question

2006-10-08 Thread latitudes
Fixed it... Added header(Content-type: text/xml); to the first line -- View this message in context: http://www.nabble.com/Interface-Autocomplete-question-tf2403569.html#a6701124 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery

[jQuery] Interface Autocomplete question

2006-10-08 Thread latitudes
I've been trying to implement the Interface autocomplete plugin on my site. The plugin calls a php script, the script returns xml, but I see no autocomplete dropdown. Any help would be appreciated! below is the html, php, and php debug txt. HTML: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML

Re: [jQuery] Window property error with ThickBox

2006-10-08 Thread Yoav Shapira
Hi, Followup: a bit more information, and notice that I'm subscribed to the discuss RSS feed via bloglines, so moderator please allow this ;) The problem originally described below persists with jQuery 1.0.1 (as opposed to latest). It happened originally with a well-formed (validated) HTML 4.01

[jQuery] Window property error with ThickBox

2006-10-08 Thread Yoav Shapira
Hi, Using the latest jquery just downloaded from the jquery.com, and the latest ThickBox (2.1 I believe, just downloaded from http://jquery.com/demo/thickbox/), I get an error message on Firefox 1.5.0.8 on Windows XP when trying to do the simplest ThickBox example. The error is a JavaScript alert

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Choan C. Gálvez
On 10/8/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Mike Alsup schrieb: Test #38 fails in Opera 8.54. Any idea where to download that version? I can't find any download prior to Opera 9. From http://www.opera.com/download/, follow the show other versions link. -- Choan

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Mike Alsup
From http://www.opera.com/download/, follow the show other versions link. Thanks, Choan. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Broken Build

2006-10-08 Thread Brandon Aaron
I guess it is obvious I'm using a different OS :) -- Brandon Aaron On 10/8/06, Franck Marcia [EMAIL PROTECTED] wrote: 2006/10/8, Jörn Zaefferer [EMAIL PROTECTED]: I tried your quick and dirty fix for lite: It worked but was awfully slow. This hack works for me and is fast: var

Re: [jQuery] IE6 performance tweak

2006-10-08 Thread Brandon Aaron
If you are changing background images/colors a lot then this, according to the MSDN article, will stop a memory leak associated with that in IE6 and would result in better performance over a long period of time. I would assume that Dean's server side solution would fix this as well. BTW ... that

Re: [jQuery] New plugin: toXML (XML serializer)

2006-10-08 Thread Antonio Collins
Hi John, My objections are mostly from a philosophical standpoint. Since it may sometimes return valid xml and sometimes return a doc fragment, what can you do with it? You can't load it in a document, you can't post it to a web service... you'd have to manually parse it to figure out what it

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Jörn Zaefferer
Mike Alsup schrieb: Test #38 fails in Opera 8.54. I think I tracked down the problem, but can't solve it: It seems like in Opera 8.54, the option property is not used, while getAttribute('selected') work when the attribute is set. But this does not work for the default selected option.

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Daimajin
My tests under WinXP Pro SP2: Firefox 1.5.0.7: fails on #55 Firefox 2.0 beta 2 (I haven't tried the latest RCs): fails on #55 IE 5.5: fails on #8 IE6: everything ok ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] search for id with '/' character

2006-10-08 Thread Mika Tuupola
On Oct 7, 2006, at 21:32, Michael Geary wrote: Good call. For anyone who is wondering what is valid in an ID: http://www.w3.org/TR/html4/types.html#type-name Also one older document regarding the same matter: http://devedge-temp.mozilla.org/viewsource/2001/css-underscores/ -- Mika Tuupola

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Kent Fredric
Firefox 2.0_rc1 Linux fails #55 as well.Konqueror version 3.5.4 does the same as Larry's, ( Just he didn't specify what version so I wasn't sure )On 10/9/06, Daimajin wrote:My tests under WinXP Pro SP2:Firefox 1.5.0.7: fails on #55Firefox 2.0 beta 2 (I haven't tried the latest RCs): fails on

Re: [jQuery] IE6 performance tweak

2006-10-08 Thread Webunity | Gilles van den Hoven
This somehow improves the performance of IE6. Interesting object detection as well. Opinions on this method? Hi, This hack was allready posted to this list by me, and someone told us you could use jQuery's method of detecting MSIE before applying the hack, Something like this, in my

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Hannah Gray
Same here, using latest release of Safari on an intel mac. Will test further to try to narrow things down. On Oct 8, 2006, at 10:00 AM, Fil wrote: Testsuite: http://joern.jquery.com/test/ Hi Jörn, on this page Safari crashes before it has a chance to display anything! -- Fil

Re: [jQuery] jquery update causes js error

2006-10-08 Thread Stephen Woodbridge
Hi again, Still having a problem with this. I could really use a hand. This is reproducible on IE6, FF 1.5.0.7, Opera 8.5.4, and Opera 9.0.2. I also just tried it with jQuery-1.0.2-rc2.js and get the same behavior. Opera 8.5.4 and 9.0.2 Error messages: JavaScript -

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Larry Garfield
On Sunday 08 October 2006 13:44, Kent Fredric wrote: Firefox 2.0_rc1 Linux fails #55 as well. Konqueror version 3.5.4 does the same as Larry's, ( Just he didn't specify what version so I wasn't sure ) 3.5.4 as well, sorry. :-) -- Larry Garfield AIM: LOLG42 [EMAIL

Re: [jQuery] IE6 performance tweak

2006-10-08 Thread Klaus Hartl
Webunity | Gilles van den Hoven schrieb: This somehow improves the performance of IE6. Interesting object detection as well. Opinions on this method? Hi, This hack was allready posted to this list by me, and someone told us you could use jQuery's method of detecting MSIE before

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Laurent Yaish
IE 6.0.2900.2180 - All tests OK FF 1.5.0.7 - All tests OK Laurent On 10/8/06, Larry Garfield [EMAIL PROTECTED] wrote: On Sunday 08 October 2006 13:44, Kent Fredric wrote: Firefox 2.0_rc1 Linux fails #55 as well. Konqueror version 3.5.4 does the same as Larry's, ( Just he didn't specify

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Matt Stith
Win XP SP2/FF 2.0RC255. load(String, Hash, Function)x (1, 0, 1)failed. everything else passed. On 10/8/06, Will Arp [EMAIL PROTECTED] wrote: osx/10.4.8/intel Firefox 2.0RC2:Tests completed in 7836 milliseconds.0 tests of 264 failed.-willOn 8-ott-06, at 12:40:15, Jörn Zaefferer wrote: Testsuite:

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Glen Lipka
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061003 Firefox/2.0 (XP SP2)Tests completed in 8344 milliseconds.0 tests of 264 failed.On 10/8/06, Matt Stith [EMAIL PROTECTED] wrote: Win XP SP2/FF 2.0RC255. load(String, Hash, Function)x (1, 0, 1)failed. everything else passed. On

[jQuery] Ajax login

2006-10-08 Thread TJ
Hi I am really having trouble using ajax function to make a login form. Here is what I have so far. Any ideas? script type=text/javascript language=JavaScript $(document).ready(function(){ $('form').submit(function(){ $.ajax({ url:

Re: [jQuery] Ajax login

2006-10-08 Thread Blair McKenzie
I don't see any element with the id 'login'.On 10/9/06, TJ [EMAIL PROTECTED] wrote: Hi I am really having trouble using ajax function to make a login form. Here is what I have so far.Any ideas?script type=text/_javascript_ language=_javascript_$(document).ready(function(){

Re: [jQuery] Ajax login

2006-10-08 Thread Matt Stith
i prolly shoulda looked at the code harder, thats probly your problem... On 10/8/06, Blair McKenzie [EMAIL PROTECTED] wrote: I don't see any element with the id 'login'. On 10/9/06, TJ [EMAIL PROTECTED] wrote: Hi I am really having trouble using ajax function to make a login form. Here

[jQuery] Ajax login

2006-10-08 Thread TJ
I added the login, sorry about that When I execute I get the vars in the address bar http://www.tjshafer.com/baintown/main.php?user=testpass=testsublogin=1 script type=text/javascript language=JavaScript $(document).ready(function(){ $('form').submit(function(){ $.ajax({

Re: [jQuery] Ajax login

2006-10-08 Thread Ⓙⓐⓚⓔ
when you override submit with js , you have to return false, or it gets submitted the old fashioned way! On 10/8/06, TJ [EMAIL PROTECTED] wrote: I added the login, sorry about that When I execute I get the vars in the address bar

Re: [jQuery] Ajax login

2006-10-08 Thread Stephen Woodbridge
You are getting a js error. You have too many: '});' for the opens, because you have one at the end of the success: line. -Steve TJ wrote: I added the login, sorry about that When I execute I get the vars in the address bar

[jQuery] ajax login

2006-10-08 Thread TJ
I have updated to this with the return false. I am still getting the same error. Any suggestions? Thanks! script type=text/javascript language=JavaScript $(document).ready(function(){ $('form').submit(function(){ element = $('[EMAIL PROTECTED]').get(0);

Re: [jQuery] Ajax login

2006-10-08 Thread Matt Stith
try: ... .submit(function(e) { e.preventDefault(); ... ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jquery update causes js error

2006-10-08 Thread Brent Pedersen
hi stephen,i'd guess the offending line is in mscross: Object.prototype.objRef = null;handle event has changed from using a i=0;iel.length;i++ type loop to a for i in c style loop.i'd guess that the extra iterable (objRef) is causing problems in the newer handle event. hope that helps. (and hi

Re: [jQuery] jquery update causes js error

2006-10-08 Thread Michael Geary
From: Stephen Woodbridge [EMAIL PROTECTED] http://imaptools.com:8081/maps/demo2.html From: Brent Pedersen i'd guess the offending line is in mscross: Object.prototype.objRef = null; Good catch. It's strictly verboten to add to Object.prototype. That will break all kinds of things, not

[jQuery] oninput bug workaround

2006-10-08 Thread Duncan Anker
I've been trying to use oninput to validate fields in firefox and have had zero luck with it the jQuery way: element.bind('input', ...) is just not cutting it. After some digging around on the net I *finally* found some useful, although mildly depressing, information about it. What it seems