Re: [jQuery] Running jQuery when already have $() from prototype

2006-09-21 Thread Rey Bango
Hi Carlos, You may have already seen this article but I'll send you the link just in case: http://jquery.com/docs/PrototypeAndJQuery/ Hope that helps. Rey Carlos Aguayo wrote: > Hi everyone, > Is there any update with the issue of using the dollar function $ from > prototype when migrating to

[jQuery] Running jQuery when already have $() from prototype

2006-09-21 Thread Carlos Aguayo
Hi everyone, Is there any update with the issue of using the dollar function $ from prototype when migrating to jQuery? Thanks! Carlos ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Running jQuery when already have $() from prototype

2006-09-08 Thread John Resig
compat.js is just a pile of snippets from the old jQuery. We're working on the new plugin right now. I'll announce when this is ready. --John > Is there any more word on whats happening this this? > > I downloaded compat.js, but it doesn't seem to do anything except > throw and exception: > > Err

Re: [jQuery] Running jQuery when already have $() from prototype

2006-09-08 Thread digital spaghetti
Is there any more word on whats happening this this? I downloaded compat.js, but it doesn't seem to do anything except throw and exception: Error: invalid return Source File: http://mysiteurl/compat.js Line: 10, Column: 25 Source Code: if ( obj ) { return obj; } I have it loadi

Re: [jQuery] Running jQuery when already have $() from prototype

2006-09-01 Thread Geoff Knutzen
John Resig Sent: Friday, September 01, 2006 4:53 PM To: jQuery Discussion. Subject: Re: [jQuery] Running jQuery when already have $() from prototype > "Prototype Support Plugin" > > I think this means that this is a know issue, and will be dealt with > someday, but again,

Re: [jQuery] Running jQuery when already have $() from prototype

2006-09-01 Thread John Resig
> "Prototype Support Plugin" > > I think this means that this is a know issue, and will be dealt with > someday, but again, I am unsure. > > I do hope that it will be dealt with, as this would save ME a whole bunch of > recoding in the next few days. > > Am I way off base here? Wouldn't be the firs

Re: [jQuery] Running jQuery when already have $() from prototype

2006-09-01 Thread Geoff Knutzen
.   Am I way off base here? Wouldn’t be the first time.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Beppu Sent: Friday, September 01, 2006 3:52 PM To: jQuery Discussion. Subject: Re: [jQuery] Running jQuery when already have $() from prototype   I wanted to

Re: [jQuery] Running jQuery when already have $() from prototype

2006-09-01 Thread John Beppu
I wanted to try to use Prototype and jQuery together, also, but it didn't work out too well for me.The main show stopper was that a lot of Prototype-based code will assume that the result of $() will be a DOM element.  With jQuery's $(), you will usually get a jQuery object back (so you can do all

Re: [jQuery] Running jQuery when already have $() from prototype

2006-09-01 Thread Geoff Knutzen
] Running jQuery when already have $() from prototype   There's a better explanation at the jQuery home page, but in a nutshell: jQuery detects your previously defined $ function and executes some additional logic. The only difference is that $('hello') will now try it by tag name and

Re: [jQuery] Running jQuery when already have $() from prototype

2006-09-01 Thread Francisco Brito
There's a better explanation at the jQuery home page, but in a nutshell:jQuery detects your previously defined $ function and executes some additional logic. The only difference is that $('hello') will now try it by tag name and then by id. The only truly ambiguous case is if you currently have an

[jQuery] Running jQuery when already have $() from prototype

2006-09-01 Thread Rune Sandberg
Hi,The company I work for have our own custom _javascript_ library where we basically have 'borrowed' some functions such as the infamous $() from prototype as well as a fair bit of our own. The application is pretty big and we want to avoid changing the current $() functionality, but we really wan