Re: [jQuery] interface compression problems

2006-09-15 Thread Stefan Petre
I fixed this. Try again to download Interface. Claudio Poli wrote: > sorry if this not the appropriate place, > but I can't understand something, I've downloaded many times > interface.js compressed but I always end up with this error from the > firefox js console: > > Error: invalid assignment

Re: [jQuery] Interface: draggables, droppables, and sortables

2006-09-15 Thread Stefan Petre
Hi, The sortable is composed from draggables and droppables, this way I reused code. I made an example for you. Tell if this is what are you trying to do http://interface.eyecon.ro/demos/sort_example.html Also, please download interface again because I improved a lot things there. Stefan bbu

Re: [jQuery] EasyDOM is Broken in 1.0.1

2006-09-15 Thread Patrick Hall
On 9/15/06, Rey Bango <[EMAIL PROTECTED]> wrote: > To provide additional details, when I changed the set() to attr(), it > generated the following error: > > "Node cannot be inserted at the specified point in the hierarchy" code: > "3" nsresult: "0x80530003 (NS_ERROR_DOM_HIERARCHY_REQUEST_ERR)" > l

[jQuery] [patch]maybe fix opacity bugs in msie

2006-09-15 Thread limodou
I don't know if the opacity bugs has been fixed in the newest version, but I checked the source code it seems that no fix about this. I made some changes in 1.0.1 version, the here is the code.    attr: function(elem, name, value){     var fix = {    "for": "htmlFor",    "class"

[jQuery] 3d rotator script

2006-09-15 Thread Will Jessup
Hello list, I added a z-index to my rotator script (so its now 3d) and posted on digg. http://www.digg.com/programming/3D_rotation_with_JavaScript Digg it if you like it! Will ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Interface Autocomplete Bug using Rev 292

2006-09-15 Thread aedmonds
I just updated to Rev 292 of jQuery and I'm using the latest iautocompleter from interface. When the AJAX post is called there is an error thrown: Error: r.getResponseHeader is not a function Source File: http://pdxmission.datafirminc.com/js/jquery.js Line: 1809 It looks like it traces through

Re: [jQuery] VisualjQuery.com down?

2006-09-15 Thread limodou
On 9/16/06, Yehuda Katz <[EMAIL PROTECTED]> wrote: > Glad to see people find it valuable enough to throw a query out. > yeah, it's a great site, and I treat it as manual site. -- I like python! My Blog: http://www.donews.net/limodou UliPad Site: http://wiki.woodpecker.org.cn/moin/UliPad UliPad M

Re: [jQuery] spin 360°

2006-09-15 Thread Justin Carter
On 9/16/06, Justin Carter <[EMAIL PROTECTED]> wrote: > Holy crap that page sucks, it uses 100% CPU time on my machine (AMD64 > 3500+) in each of IE7, Opera 9 and Firefox 1.5.0.3!... I mean, of course, the two example pages with the rotating stuff, not that URL itself :) __

Re: [jQuery] spin 360°

2006-09-15 Thread Justin Carter
On 9/16/06, Armand Datema <[EMAIL PROTECTED]> wrote: > here is a YUI version of rotate > > http://blog.360.yahoo.com/blog-ktYYK_s5fqJ2Hu1ryv2QSL0-?cq=1&p=245&; Holy crap that page sucks, it uses 100% CPU time on my machine (AMD64 3500+) in each of IE7, Opera 9 and Firefox 1.5.0.3!...

[jQuery] Interface: draggables, droppables, and sortables

2006-09-15 Thread bbuchs
I posted earlier this week about a problem with Interface and the drag/drop/sort functionality. Someone pointed out that my example had an error in IE, so I went back to the drawing board to refactor the code. I've posted three demo pages that explain my problem: http://beta.bryanbuchs.com/index

Re: [jQuery] EasyDOM is Broken in 1.0.1

2006-09-15 Thread Rey Bango
To provide additional details, when I changed the set() to attr(), it generated the following error: "Node cannot be inserted at the specified point in the hierarchy" code: "3" nsresult: "0x80530003 (NS_ERROR_DOM_HIERARCHY_REQUEST_ERR)" location: "http://192.168.1.204/lib/jquery.js Line: 1" Ag

Re: [jQuery] EasyDOM is Broken in 1.0.1

2006-09-15 Thread Rey Bango
I typed it in wrong in the email :) Rey... Matt Stith wrote: > Well.. Unless you just typed it wrong in this email, thats your problem. > atte() should be attr(). > > Otherwise, i dunno :P > > On 9/15/06, *Rey Bango* < [EMAIL PROTECTED] > > wrote: > > So I'm try

Re: [jQuery] EasyDOM is Broken in 1.0.1

2006-09-15 Thread Matt Stith
Well.. Unless you just typed it wrong in this email, thats your problem. atte() should be attr().Otherwise, i dunno :POn 9/15/06, Rey Bango < [EMAIL PROTECTED]> wrote: So I'm trying to use the Oslow's variation of the EasyDOM plugin but itwill only work in 1.0a. In 1.0.1, it generates a "e.set is

[jQuery] EasyDOM is Broken in 1.0.1

2006-09-15 Thread Rey Bango
So I'm trying to use the Oslow's variation of the EasyDOM plugin but it will only work in 1.0a. In 1.0.1, it generates a "e.set is not a function" error. I tried replacing the set() method with the atte() method but it still bombed. Here's the version I'm trying to work with: http://www.aloyza

Re: [jQuery] Cookie handling in JQuery

2006-09-15 Thread Rexbard
I have a cookie library that I've mostly ported to jQuery. The library silently handles the 4096 boundary allowing the storage of arbitrary strings lengths. It can also be used to store and restore object data. I'll finish the port and post it this weekend for any interested. johnk Klaus Hartl

Re: [jQuery] Safari searchbox, the jQuery way

2006-09-15 Thread Fil
> Doesnt seem to do anything for me on FF/Win Yes. It does transform the box on Safari, and leaves it as usual on other browsers (except it empties the field at the first focus). > > http://www.jquery.info/IMG/html/18_smartsearchbox.html But I have seen a mock-up thing at http://www.spisderike.ne

Re: [jQuery] Is set() deprecated?

2006-09-15 Thread John Resig
.set() was superseded by .attr() in 1.0. You can do: .attr("name") // to access the name attribute .attr("name","test") // to set the name attribute .attr({ name: "test", value: "test" }) // to set multiple attributes --John On 9/15/06, Rey Bango <[EMAIL PROTECTED]> wrote: > I'm trying to use a

Re: [jQuery] Safari searchbox, the jQuery way

2006-09-15 Thread Matt Stith
Doesnt seem to do anything for me on FF/WinOn 9/15/06, Fil <[EMAIL PROTECTED]> wrote: > I like the Safari searchbox system, but it's a pity it doesn't validate> XHTML. So here's my take on it, the jQuery-way:> http://www.jquery.info/IMG/html/18_safari_searchbox.html I have now transformed t

[jQuery] Is set() deprecated?

2006-09-15 Thread Rey Bango
I'm trying to use a variation of the Easy DOM plugin but when I run a test, it generates an error saying that the set() method isn't defined. In looking at the docs, I don't see a reference to it but in doing a site search, I did in fact find that it was/is part of the JQuery Base/DOM module. I

Re: [jQuery] remove [EMAIL PROTECTED] frome the mailing list

2006-09-15 Thread Brian
The URL of the mailman manager page is actually in the headers of the email, but a lot of mail readers aren't going to do anything special with it. Here it is, for those who need it: http://jquery.com/mailman/listinfo/discuss_jquery.com > Perhaps unsubscribe instructions should be included in the

Re: [jQuery] jQBrowser 0.2 woes

2006-09-15 Thread Dave Cardwell
Thanks for the heads up - I'll sort that this weekend too. Best wishes, Dave Cardwell ~ http://davecardwell.co.uk/ Jan Sorgalla wrote: > > Dave Cardwell wrote: >> Actually thinking again, delete from "var public = {" right down to (and >> including) "$.browser = public;", and after the "var pr

Re: [jQuery] remove [EMAIL PROTECTED] frome the mailing list

2006-09-15 Thread Dave Cardwell
Perhaps unsubscribe instructions should be included in the jQuery footer? Best wishes, Dave Cardwell ~ http://davecardwell.co.uk/ Charles Crépeau wrote: > can you please remove this email from your mailing list , > > thanks > > -- > Charles Crépeau > > > -

[jQuery] interface compression problems

2006-09-15 Thread Claudio Poli
sorry if this not the appropriate place, but I can't understand something, I've downloaded many times interface.js compressed but I always end up with this error from the firefox js console: Error: invalid assignment left-hand side Source File: http://localhost:/branches/0.1/js/interface.js

Re: [jQuery] Thickbox: Smoooooth scrolling with fixed positioning

2006-09-15 Thread Klaus Hartl
Klaus Hartl schrieb: > Hi all, > > I worked a bit on the thickbox script to improve it. What bothered me, > was that when scrolling the window the thickbox window is moved to stay > in the center, but that happens not smooth at all. > > So I changed it to use fixed positioning. http://beta.pl

Re: [jQuery] Convert existing JS-code to jQuery

2006-09-15 Thread Jörn Zaefferer
Hey Mike, > That should help you get started! > as that may be a great help to everyone new to developing with jQuery, I took the freedom and added both question and answer to the jQuery FAQ: http://jquery.com/docs/FAQ/ -- Jörn ___ jQuery mailing l

Re: [jQuery] Convert existing JS-code to jQuery

2006-09-15 Thread Michael Geary
> From: Stefan Nagtegaal > > i want to port some pretty large JS-file to jQuery to take > advantage of the easy way of writing and understanding it. > Problem is, I never did much JS before.. > > Could you guys give me some workflow for what the best way > would be to start and finish such a jo

RE: [jQuery] spin 360°

2006-09-15 Thread Andy Matthews
That's not quite what he's talking about. I think he's looking for something that spins on the vertical axis. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Armand Datema Sent: Friday, September 15, 2006 10:20 AM To: jQuery Discussion. Subject: Re: [jQuery

Re: [jQuery] VisualjQuery.com down?

2006-09-15 Thread Dave Methvin
> Sorry. It appeared to be an issue with our corporate network. They probably blocked it thinking it was a porn site. After it, it has "visual" in the name, and everyone going to the site had a smile on their face... ___ jQuery mailing list discuss@jq

Re: [jQuery] VisualjQuery.com down?

2006-09-15 Thread Yehuda Katz
Glad to see people find it valuable enough to throw a query out.-- YehudaOn 9/15/06, Brandon Aaron < [EMAIL PROTECTED]> wrote:Sorry. It appeared to be an issue with our corporate network. I just jumped the gun on sending to the list. Some sites where pulling up andsome where not.ThanksBrandonOn 9/1

Re: [jQuery] VisualjQuery.com down?

2006-09-15 Thread Brandon Aaron
Sorry. It appeared to be an issue with our corporate network. I just jumped the gun on sending to the list. Some sites where pulling up and some where not. Thanks Brandon On 9/15/06, Yehuda Katz <[EMAIL PROTECTED]> wrote: > It seems to be loading fine for me. What error did you get? > > -- Yehuda

Re: [jQuery] spin 360°

2006-09-15 Thread Christof Donat
Hi, > You could use a canvas element create one and import the image into it > and then roate that. > > Pure javascript but not easily supported in all borwers... Ok IE. Well in browsers without canvas you could look for data-url-support and if that fails there is still the possibility of a java

Re: [jQuery] spin 360°

2006-09-15 Thread Simon Proctor
You could use a canvas element create one and import the image into it and then roate that. Pure javascript but not easily supported in all borwers... Ok IE. On 9/15/06, Armand Datema <[EMAIL PROTECTED]> wrote: > hi > > here is a YUI version of rotate > > http://blog.360.yahoo.com/blog-ktYYK_s5fq

Re: [jQuery] VisualjQuery.com down?

2006-09-15 Thread Yehuda Katz
It seems to be loading fine for me. What error did you get?-- YehudaOn 9/15/06, Brandon Aaron <[EMAIL PROTECTED] > wrote:Just curious if anyone else is having problems loading visualjquery.com right now?Brandon___jQuery mailing listdiscuss@jquery.com http

Re: [jQuery] ImagaBox plugin

2006-09-15 Thread kenton.simpson
Thanks for shareing all your great plugins, I can't wait to see the final imagebox product. -- View this message in context: http://www.nabble.com/ImagaBox-plugin-tf2270807.html#a6327547 Sent from the JQuery forum at Nabble.com. ___ jQuery mailing l

Re: [jQuery] spin 360°

2006-09-15 Thread Armand Datema
hi here is a YUI version of rotate http://blog.360.yahoo.com/blog-ktYYK_s5fqJ2Hu1ryv2QSL0-?cq=1&p=245&; armand On 9/15/06, Onno Timmerman <[EMAIL PROTECTED]> wrote: > Would it be possible to let a image spin 360° around. > > How would it be done? > > Onno > > ___

Re: [jQuery] remove [EMAIL PROTECTED] frome the mailing list

2006-09-15 Thread Nando Vieira
Please, remove mine too: [EMAIL PROTECTED] -- Nando Vieira bloggin' @ http://simplesideias.com.br -- Nando Vieira bloggin' @ http://simplesideias.com.br ___ Novidade no Yahoo! Mail: receba alertas de novas mensagens no seu ce

Re: [jQuery] NetFlix Style Popup

2006-09-15 Thread Rey Bango
Yep. Thats what it is. I told you I needed sleep. I tried out here: http://www.intoajax.com/jtiptest.htm Although it only works with local files which I'm assuming is part of the cross-domain security. Rey... Karl Swedberg wrote: > On Sep 15, 2006, at 10:00 AM, Rey Bango wrote: > Hi Rey, > >

Re: [jQuery] NetFlix Style Popup

2006-09-15 Thread Karl Swedberg
On Sep 15, 2006, at 10:00 AM, Rey Bango wrote: > Hmm. I'm not seeing it the code (jtip.js) but that just may be that > I'm > entirely too tired from a late night of coding. I'll try it out and > see > how it looks. Hi Rey, I think this is the Ajaxy line from jtip.js: $('#JT_copy').load(u

[jQuery] Convert existing JS-code to jQuery

2006-09-15 Thread Stefan Nagtegaal
Hi list, i want to port some pretty large JS-file to jQuery to take advantage of the easy way of writing and understanding it. Problem is, I never did much JS before.. Could you guys give me some workflow for what the best way would be to start and finish such a job? Any help, suggestions and

Re: [jQuery] VisualjQuery.com down?

2006-09-15 Thread Karl Swedberg
On Sep 15, 2006, at 9:55 AM, Brandon Aaron wrote: > Just curious if anyone else is having problems loading > visualjquery.com right now? working fine for me. ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mail

RE: [jQuery] spin 360°

2006-09-15 Thread Andy Matthews
Simplest way to do it would be to have a quicktime of the product rotating. Using jQuery, you could also take multiple still images of the product as it rotates, then scroll through those. It wouldn't QUITE be the same but it would look like it. -Original Message- From: [EMAIL PROTECTED

Re: [jQuery] NetFlix Style Popup

2006-09-15 Thread Rey Bango
Hmm. I'm not seeing it the code (jtip.js) but that just may be that I'm entirely too tired from a late night of coding. I'll try it out and see how it looks. Thanks for your help Yehuda, Rey Yehuda Katz wrote: > Um. It does have AJAX functionality. You set the href to the AJAXy URL, > and i

[jQuery] VisualjQuery.com down?

2006-09-15 Thread Brandon Aaron
Just curious if anyone else is having problems loading visualjquery.com right now? Brandon ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] datePicker is gone when 2nd time loading a form

2006-09-15 Thread Michael Grosser
im loading a form via load, the first time i load it, datepicker is there, if i now a 2nd time try to load the form, there is no date picker...(im loading it into the same place as before ('#menu'))the datepicker code is inside the for .html file
    $('input#von').datePicker({startDate:'01/01/

Re: [jQuery] NetFlix Style Popup

2006-09-15 Thread Yehuda Katz
Um. It does have AJAX functionality. You set the href to the AJAXy URL, and it'll grab the contents on hover.-- YehudaOn 9/15/06, Rey Bango < [EMAIL PROTECTED]> wrote:Unfortunately no. Thats the same one that I had and it has no Ajax functionality as far as I can tell. :o(Rey...Yehuda Katz wrote:>

Re: [jQuery] NetFlix Style Popup

2006-09-15 Thread Rey Bango
Unfortunately no. Thats the same one that I had and it has no Ajax functionality as far as I can tell. :o( Rey... Yehuda Katz wrote: > This is the original jTip. I think it does what you need: > > http://codylindley.com/Javascript/264/jtip-a-jquery-tool-tip > > On 9/15/06, *Rey Bango* <[EMAIL

[jQuery] spin 360°

2006-09-15 Thread Onno Timmerman
Would it be possible to let a image spin 360° around. How would it be done? Onno ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] remove [EMAIL PROTECTED] frome the mailing list

2006-09-15 Thread Charles Crépeau
can you please remove this email from your mailing list ,thanks-- Charles Crépeau ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQBrowser 0.2 woes

2006-09-15 Thread Jan Sorgalla
Dave Cardwell wrote: > > Actually thinking again, delete from "var public = {" right down to (and > including) "$.browser = public;", and after the "var private = {}" > block, add "$.browser = private;". That should work better. > Note that "public" and "private" are reserved names in javasc

Re: [jQuery] NetFlix Style Popup

2006-09-15 Thread Yehuda Katz
This is the original jTip. I think it does what you need:http://codylindley.com/_javascript_/264/jtip-a-jquery-tool-tip On 9/15/06, Rey Bango <[EMAIL PROTECTED]> wrote: Do you happen to have a link to that Yehuda? I'd really be interested inusing it. If you have code, that would be cool as well.Rey

Re: [jQuery] NetFlix Style Popup

2006-09-15 Thread Rey Bango
Do you happen to have a link to that Yehuda? I'd really be interested in using it. If you have code, that would be cool as well. Rey... Yehuda Katz wrote: > My recollection is that jTip2 gets the info via AJAX. I am currently > using jTip2 for that purpose, in fact. > > -- Yehuda > > On 9/14/

Re: [jQuery] Safari searchbox, the jQuery way

2006-09-15 Thread Fil
> I like the Safari searchbox system, but it's a pity it doesn't validate > XHTML. So here's my take on it, the jQuery-way: > http://www.jquery.info/IMG/html/18_safari_searchbox.html I have now transformed this code into a plugin called "smartsearchbox": http://www.jquery.info/IMG/html/18_