Re: [jQuery] Kinda funny way to getting jQuery some exposure

2007-03-30 Thread Paul Caton
That page with the email animations is awesome! It's like a web Chamber of Horrors :-) I think you won that comments debate. Paul Caton. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] modifying autocomplete behavior

2007-03-21 Thread Paul
with all possible records which users can scroll through. Do any of you know what I might need to do to get started? -Paul ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] NOTICE: Moving to Google Groups

2007-03-21 Thread Paul
Mark's post below explains how to receive the posts to your email address. This instruction from Google should explain how to post messages via email: http://groups.google.com/support/bin/answer.py?answer=46242 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

Re: [jQuery] NOTICE: Moving to Google Groups

2007-03-21 Thread Paul
to the group through email... however, i can't seem to figure out how/where to go to setup the group, so i can receive the post via email!!! thoughts/comments... thanks -Original Message- From: Paul [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 21, 2007 9:19 AM To: [EMAIL

[jQuery] a better way to handle sessions

2007-03-21 Thread Paul
I have a getScreen() function that handles navigation within my application. Its first task is calling a validateSession() function, which interacts with the server to assure the user is logged in. Is there a better way to handle sessions in ajax apps?

Re: [jQuery] jquery.de

2007-03-20 Thread Paul Bakaus
. Talk to you soon, Paul 2007/3/20, Michael Fuerst [EMAIL PROTECTED]: Hi, sorry, this is could a little of topic: Maybe some of you already found jquery.de and wondered what's it all about and why there isn't happening anything: I registered jquery.de a year ago, just befor jquery got really

[jQuery] changing default thickbox behavior

2007-03-15 Thread Paul
Is there a way to modify the default Thickbox behavior? I don't want the user to be able to dismiss the TB window by clicking the overlay or a close link-I want to programmatically close it based on user input within the TB window. Thanks, Paul

Re: [jQuery] changing default thickbox behavior

2007-03-15 Thread Paul
Wow, Rob, you did all my work for me! Fantastic, thanks! _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob Desbois Sent: Thursday, March 15, 2007 8:54 AM To: jQuery Discussion. Subject: Re: [jQuery] changing default thickbox behavior Paul, Short answer

Re: [jQuery] Calling all CF'ers... et al...

2007-03-13 Thread Paul
supposed to work during such beautiful spring weather?? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rick Faircloth Sent: Tuesday, March 13, 2007 10:00 AM To: 'jQuery Discussion.' Subject: Re: [jQuery] Calling all CF'ers... et al... Hi, Paul... Enjoy

Re: [jQuery] Ok... one last effort to make this work... help!

2007-03-13 Thread Paul
backwards... Hope it helps convince you to stick with jQuery -- after a short learning curve it makes life SO much simpler! paul HTML doc: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head titleTest bed/title script src=/shared/js/jquery.js type=text

Re: [jQuery] Ok... one last effort to make this work... help!

2007-03-13 Thread Paul
! Yay! It works! Thanks, Paul! Now that that's over... besides the code that your repaired in the javascript, I found I had another issue that didn't show up until after the code was repaired... I had the page I was calling *IN THE WRONG FOLDER*!! ARR! How stupid... Anyway

Re: [jQuery] Calling all CF'ers... et al...

2007-03-12 Thread Paul
the flexibility I need. HTH, Paul function validateField(field, criteria){ $(#+field+ img.ico).attr(src,/images/office/ico-loading.gif); $.get(/gateway/validate.cfm?field=+field+value=+$(#+field+ input).val()+criteria=+criteria, function(response

Re: [jQuery] Calling all CF'ers... et al...

2007-03-12 Thread Paul
PROTECTED] On Behalf Of Klaus Hartl Sent: Monday, March 12, 2007 3:02 PM To: jQuery Discussion. Subject: Re: [jQuery] Calling all CF'ers... et al... Paul schrieb: What you described is basically what I do, Rick--not because Jorn's plugin didn't work but because many of my form fields are validated

Re: [jQuery] Calling all CF'ers... et al...

2007-03-12 Thread Paul
PROTECTED] On Behalf Of Rick Faircloth Sent: Monday, March 12, 2007 3:35 PM To: 'jQuery Discussion.' Subject: Re: [jQuery] Calling all CF'ers... et al... Paul, could I impose upon you to strip your example code down to handling one field? I don't understand everything you've got there, and what it all

Re: [jQuery] Calling all CF'ers... et al...

2007-03-12 Thread Paul
#json.encode(st)#/cfoutput You can see the result of all this: http://paul.malan.org/jQuery/validation-example.png. (You may also get some use out of Chris Jordan's new CF/jQuery function set - http://cjordan.us/ - for local validation.) Let me know if this helps or confuses... Paul

Re: [jQuery] interface 1.2 pause() function

2007-03-10 Thread Paul
That's exactly what it was, Joel. I sorted it out yesterday after stumbling on a related suggestion in another post. Thanks for following up, though! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joel Birch Sent: Saturday, March 10, 2007 5:55 AM To:

[jQuery] interface 1.2 pause() function

2007-03-09 Thread Paul
Based on a few examples I've googled up, I understand I should be able to pause between animation effects. I must not understand it properly, though, because I get absolutely no delay-the message drops in and back out instantly. Here's what I'm doing; as always, thanks for your input.

[jQuery] simple - focusing on an input

2007-03-09 Thread Paul
I'm trying to focus the cursor in a text box at the end of a simple animation, and it won't. The cursor shows up temporarily in the box, then flits away. $(#orderFinder).SlideToggleUp(250, null, 'bounceout');// show/hide the div $(#orderFinder input).val('').focus();

Re: [jQuery] simple - focusing on an input

2007-03-09 Thread Paul
- focusing on an input Use: $(#orderFinder input).val('')[0].focus() --Francesco Paul ha scritto: I'm trying to focus the cursor in a text box at the end of a simple animation, and it won't. The cursor shows up temporarily in the box, then flits away. $(#orderFinder).SlideToggleUp(250

Re: [jQuery] simple - focusing on an input

2007-03-09 Thread Paul
PM To: 'jQuery Discussion.' Subject: Re: [jQuery] simple - focusing on an input It references the first matching element. It's array notation. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Sent: Friday, March 09, 2007 2:24 PM To: 'jQuery Discussion.' Subject

Re: [jQuery] simple - focusing on an input

2007-03-09 Thread Paul
on an input It references the first matching element. It's array notation. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Sent: Friday, March 09, 2007 2:24 PM To: 'jQuery Discussion.' Subject: Re: [jQuery] simple - focusing on an input Thanks for the reply, Francesco

Re: [jQuery] simple - focusing on an input

2007-03-09 Thread Paul
. Subject: Re: [jQuery] simple - focusing on an input Paul, So you understand, the array notation Francesco originally brought up is in order to get the DOM element you searched for. A jQuery object is an array DOM elements even if there is only one entry. So, if you wanted to use

Re: [jQuery] release: Validation plugin beta 1

2007-03-07 Thread Paul Bakaus
Hi Jörn, just a minor issue: The text Please accept our policy after clicking submit on the second form will not vanish directly after checking the checkbox. Other than that, great work! -Paul 2007/3/7, amircx [EMAIL PROTECTED]: is anyone here tried to run this code on ie6 ? i wonder

[jQuery] html in taconite response

2007-03-07 Thread Paul
+ response.order_id + successfully created. aView order/a); I've considered that it might need to be wrapped in a CDATA block, but when I try that it still breaks. I'd appreciate your ideas. -Paul ___ jQuery mailing list discuss@jquery.com http

Re: [jQuery] html in taconite response

2007-03-07 Thread Paul
created. aView order/a); Paul, You do need to use a CDATA block for that code. How did it fail when you tried it? Do you have a sample page? Mike ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss

Re: [jQuery] html in taconite response

2007-03-07 Thread Paul
I swear I tried that before posting, but I must not have... Amazing how well things work when you follow simple rules, isn't it? Thanks for your help. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: Wednesday, March 07, 2007 10:33 AM

[jQuery] finding an image by src attribute

2007-03-06 Thread Paul
this attribute? Thanks! Paul ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] finding an image by src attribute

2007-03-06 Thread Paul
- Original Message - From: Paul mailto:[EMAIL PROTECTED] To: 'jQuery mailto:discuss@jquery.com Discussion.' Sent: Tuesday, March 06, 2007 10:34 AM Subject: [jQuery] finding an image by src attribute This is probably easy, but it's my first attempt so I'm not sure where

Re: [jQuery] $(node).hasClass(...) function

2007-03-04 Thread Paul Bakaus
Hi guys, I think it's absolutely worth thinking about adding a hasClass shortcut to the core, since I also missed the shortcut many times. the is() function is pretty nice, but people would really guess there is a hasClass. -Paul 2007/3/4, Sébastien Pierre [EMAIL PROTECTED]: Hi

Re: [jQuery] $(node).hasClass(...) function

2007-03-04 Thread Paul Bakaus
@jquery.com http://jquery.com/discuss/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- -- Paul Bakaus ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] taconite question

2007-02-28 Thread Paul
I'm wondering, since Taconite intercepts AJAX calls, can I call an AJAX function from within the Taconite XML file? -Paul ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery + ColdFusion - auto complete examples?

2007-02-26 Thread Paul
There is a complete CF-based example here: http://www.pengoworks.com/workshop/jquery/autocomplete.htm He includes the CFM as a txt file at the bottom of the page... I just implemented it and it's pretty simple to do following his lead. -Original Message- From: [EMAIL PROTECTED]

Re: [jQuery] drag drop : proxy element?

2007-02-25 Thread Paul Bakaus
, -Paul 2007/2/23, Circlefusion [EMAIL PROTECTED]: I use the word proxy because that is how it is worded in YUI. I'm referring to the ghosted element that is physically being dragged along with the cursor during a drag and drop. It seems that the interface plugin drag and drop function creates

[jQuery] jQuery taconite val()

2007-02-23 Thread Paul
I think I may be missing something in the jQuery Taconite implementation. To clear a text field's value I would typically just use $(#modify input).val(abc); Using Taconite I expected I would use val selection=#modify input value=abc /, but it doesn't work. I've worked around it by simply using

Re: [jQuery] jQuery taconite val()

2007-02-23 Thread Paul
Thanks! Feeling a bit sheepish, paul -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: Friday, February 23, 2007 1:14 PM To: jQuery Discussion. Subject: Re: [jQuery] jQuery taconite val() val selection=#modify input value=abc

Re: [jQuery] jQuery taconite val()

2007-02-23 Thread Paul
Mike, here's an interesting quirk. If I try to clear the value (val select=#modify input value= /) Taconite doesn't work. If I insert a value, even a space (val select=#modify input value= /) it does work. Should I use another method to clear the value of an input? -Original Message-

Re: [jQuery] jQuery taconite val()

2007-02-23 Thread Paul
to clear the value of an input? That's a bug. I'll get it fixed and upload a new rev tonight. Thanks for catching it, Paul! Mike ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ ___ jQuery

Re: [jQuery] jQuery GreaseMonkey-detection script modified (no remote calls)

2007-02-22 Thread Paul Bakaus
Hi Kenneth, dynamically creating a script is a very nice idea! I will update my original script to your modified one. -Paul 2007/2/23, Karl Swedberg [EMAIL PROTECTED]: that works for me. Thanks, Kenneth! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] jQuery Design Decisions? Comparison to MooTools?

2007-02-13 Thread Paul
posting--not to mention all the questions that were answered (before I even knew I had them) while reading other posts. By the way Matt, I bookmarked your website years ago and used your JS libraries quite a bit--right up until I adopted jQuery! Thanks for making those things available. -Paul

Re: [jQuery] Want to know if sites are jQuery powered? Check this out!

2007-02-12 Thread Paul Bakaus
Hi Tarique, putting it into the user.js script is not possible, I explained this in an earlier way. There is no javascript detection of jQuery possible with the script in user.js. -Paul 2007/2/12, Dr. Tarique Sani [EMAIL PROTECTED]: On 2/9/07, Felix Geisendörfer [EMAIL PROTECTED] wrote: I'm

Re: [jQuery] Auto-switch between jQuery document.getElementById

2007-02-12 Thread Paul Bakaus
All major plugins use jQuery instead of $ because of these issues. If you have found a plugin that still uses the Dollar sign, check if you have an up-to-date version and if yes, try to inform the author of the plugin, point him to the plugins help pages on docs.jquery.com. -Paul 2007/2/12

Re: [jQuery] Want to know if sites are jQuery powered? Check this out!

2007-02-10 Thread Paul Bakaus
at jquerydetector.user.js and change the path to a file you wrote. So far, Paul 2007/2/9, Franck Marcia [EMAIL PROTECTED]: 2007/2/9, Paul Bakaus [EMAIL PROTECTED]: I have set up a easy but useful greasemonkey script, which adds a small jquery icon in the bottom right corner if jQuery

[jQuery] Want to know if sites are jQuery powered? Check this out!

2007-02-09 Thread Paul Bakaus
me your opinions! Greetings, Paul -- -- Paul Bakaus ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] click-event and keyCode

2007-02-08 Thread Paul Bakaus
to false again. That's it. Paul 2007/2/8, Stefan Kilp [sk-software] [EMAIL PROTECTED]: hi, is it possible to distinguish between a click with or without a ctrl/alt key pressed. i want to simulate selecting items with Ctrl+click and click only to execute an action. $(p).bind(click, function

[jQuery] the best way to get live data

2007-02-08 Thread Paul
We have several industrial weight scales that report their measurements to a database every 5 seconds. Is there an efficient way I can use jQuery to pull this data into a div on my page every 5 seconds so my app always shows the most recent scale reading? -Paul

Re: [jQuery] the best way to get live data

2007-02-08 Thread Paul
Excellent, thank you! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jake McGraw Sent: Thursday, February 08, 2007 5:22 PM To: jQuery Discussion. Subject: Re: [jQuery] the best way to get live data Paul, you can use the window object, specifically

Re: [jQuery] jQuery operations on ajax data

2007-02-07 Thread Paul
Discussion.' Subject: Re: [jQuery] jQuery operations on ajax data You just have to reassign the function to the images after you load in content. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Sent: Wednesday, February 07, 2007 3:14 PM To: 'jQuery Discussion

Re: [jQuery] jQuery operations on ajax data

2007-02-07 Thread Paul
flawed. By using the CF getTickCount() function the tick count will be hard code into your template. What you want to do, is use the JS Date() object to get the current milliseconds. -Dan _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Sent: Wednesday, February

Re: [jQuery] jQuery operations on ajax data

2007-02-07 Thread Paul
Dan, Thank you. Using the callback to reinit did the trick. Oh and I have no idea what you meant about only triggering off the handler for the #content layer. Will you explain? -Paul _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II

Re: [jQuery] jQuery operations on ajax data

2007-02-07 Thread Paul
on ajax data Paul, I was just pointing out that you only really need to reinitialize the click() handler on images in the #content layer (the one where you're loading the content.) There's no reason to update the entire DOM again. Just the segment you loaded into DOM. -Dan

Re: [jQuery] AjaxCFC (paging Rey Bango...)

2007-02-06 Thread Paul
with DWR methods. How does one handle a CF query object without the DWR methods and syntax? Thanks, Paul _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christopher Jordan Sent: Tuesday, February 06, 2007 10:13 AM To: jQuery Discussion. Subject: Re: [jQuery

Re: [jQuery] AjaxCFC (paging Rey Bango...)

2007-02-06 Thread Paul
if you were to start a new project now, would you adopt AjaxCFC or just do things the way you have been? I need to start on the server-side implementation of a project and want to make an informed decision if I can... Thanks again. Paul -Original Message- From: [EMAIL PROTECTED] [mailto

Re: [jQuery] AjaxCFC (paging Rey Bango...)

2007-02-06 Thread Paul
: Tuesday, February 06, 2007 11:57 AM To: jQuery Discussion. Subject: Re: [jQuery] AjaxCFC (paging Rey Bango...) Hi Paul, I'm so used to doing things sans AjaxCFC for jQuery that I would probably stick with straight jQuery since its what I'm most accustomed to and I love having greater control

Re: [jQuery] AjaxCFC (paging Rey Bango...)

2007-02-06 Thread Paul
This is great, Chris. Thanks a bunch for taking the time to send it. I'm sure I'll have questions as I progress. paul _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christopher Jordan Sent: Tuesday, February 06, 2007 11:02 AM To: jQuery Discussion. Subject

Re: [jQuery] Make IE re-number an OL after adding elements?

2007-02-06 Thread Paul McLanahan
I can't reproduce the problem. I've tried a similar script in IE6 and IE7 and they both behave nicely when using append() and prepend() on an OL element. Could you post a link to a page with your full example on it, or post more code? Also, I tested with jQuery version 1.1.1, are you using an

Re: [jQuery] AjaxCFC (paging Rey Bango...)

2007-02-06 Thread Paul
and use $(#element).html() to replace the content, or do you handle formatting on the client side? (By you I mean Andy specifically but the rest of you generally as well.) I'm learning a lot. Paul _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent

Re: [jQuery] AjaxCFC (paging Rey Bango...)

2007-02-06 Thread Paul
. That might not be the most efficient way of doing things (if it's not PLEASE someone speak up, I want to get better), but it's the way that makes sense to me. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Sent: Tuesday, February 06, 2007 4:05 PM To: 'jQuery

[jQuery] very simple JSON

2007-02-06 Thread Paul
){ $('#content').html(response); //THIS OUTPUTS {TRUCK:INVALID,ISVALID:false} alert(response.TRUCK); //THIS ALERTS undefined-shouldn't it alert INVALID? }); Can you tell what I've done wrong? Thanks. Paul

Re: [jQuery] very simple JSON

2007-02-06 Thread Paul
] On Behalf Of Christopher Jordan Sent: Tuesday, February 06, 2007 4:27 PM To: jQuery Discussion. Subject: Re: [jQuery] very simple JSON Paul, you forgot to eval the JSON string. Andy (or anyone, really) can correct me if I'm wrong, but even when using the $.get method you have to eval the JSON

Re: [jQuery] OT: Cancel event's default action in Firefox

2007-02-03 Thread Paul Bakaus
Hi, I actually had the same problem some weeks before. I still haven't found any solution for this, so far preventDefault and returning false doesn't fix the problem.. -Paul 2007/2/3, Matt Stith [EMAIL PROTECTED]: Heh, never heard about that ctrl+click feature in firefox, ill probly be using

Re: [jQuery] Draggables preventing text select in IE

2007-01-26 Thread Paul Bakaus
do not return false in mousedown/mousemove. But then, if you return false in IE in these events, you cannot drag *out* of the browser window and back anymore. It's a bit hard to explain, but if it has some need to you, I can do a demo. -Paul 2007/1/26, Su [EMAIL PROTECTED]: You rule. Commenting

Re: [jQuery] Draggables preventing text select in IE

2007-01-26 Thread Paul Bakaus
Davin, I have tried all possible methods (at least that's what I think). I spent almost 3 days on that darn topic ;-) I will come up with some demos soon. Paul 2007/1/26, Dave Methvin [EMAIL PROTECTED]: Paul, you might try setting the unselectable=yes attribute in IE, or the -moz-user

Re: [jQuery] util plugins, was: What tools ...

2007-01-24 Thread Paul McLanahan
It would be nice to be able to contribute to a folder like that. I have several little plugins that I use as helpers on larger projects that I'm sure others would find useful as well. Is there a way to easily allow people to only commit SVN to a single folder like util, or would it be better

Re: [jQuery] Dimensions plugin improvement request

2007-01-23 Thread Paul Bakaus
Hi Kush, we have already implemented this functionality. Just use the offset method with a addtional property object like this: offset({ border: false }); See ya, Paul 2007/1/23, Kush Murod [EMAIL PROTECTED]: Hi guys, At the moment it is 0 + distance to div + border width I am expecting

[jQuery] Some Useful Minor Plugins

2007-01-23 Thread Paul McLanahan
, so I needed to mess with said order. If this has already been done, then consider this an update. Please let me know if you find any bugs, and if you know of an easier/better/more succinct way to do this, then I'd love to hear it. I'm always interested in optimization. Enjoy, Paul -- (function

Re: [jQuery] Interface: Draggable Ghost should only show the border

2007-01-18 Thread Paul Bakaus
Hi Phil, I'd love to see your select plugin in action (I have build something similar for a client these days). Does is handle ctrl+click, shift+click (ranges), shift+up / shift+down and additionaly an activated state? -Paul 2007/1/18, floepi [EMAIL PROTECTED]: Hi Stefan, that would

Re: [jQuery] Bug in Nifty Corner Plugin

2007-01-05 Thread Paul Bakaus
Hi there, I originally translated the Nifty plugin without doing a lot of testing. I will look at it, see what I can do. Until then, you can just use vJustify! -Paul 2007/1/5, Olaf Bosch [EMAIL PROTECTED]: Dave Methvin schrieb: If you are just using Nifty (9KB!) for same-height

[jQuery] Events on Document versus preventing Text Selection

2007-01-04 Thread Paul Bakaus
searching for a workaround on this. Probably YUI can do it in their DD Library, but I don' know how. Any ideas? Paul -- -- Paul Bakaus ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Wildcards

2007-01-03 Thread Paul Bakaus
___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- -- Paul Bakaus ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Very Cool Window Plugin

2006-12-29 Thread Paul Bakaus
Pegoraro but I haven't seen him on the list. I'd like to see if the docs could be translated to English. Anyone know Marco? Rey... ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- -- Paul Bakaus

Re: [jQuery] Splitter

2006-12-29 Thread Paul Bakaus
. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- -- Paul Bakaus ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery mouseenter mouseleave support?

2006-12-27 Thread Paul Bakaus
be saying that...) -js ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- -- Paul Bakaus ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Position.clone in jquery

2006-12-19 Thread Paul Bakaus
that contains left/top. Try it! -Paul 2006/12/19, Andreas Wahlin [EMAIL PROTECTED]: I've recently moved from prototype to jquery, and wonder if there's something simmilar to Position.clone. That is, match an arbitrary elements position exactly, (with all the offsets and parents and so on, it's more

Re: [jQuery] Interface status?

2006-12-18 Thread Paul Bakaus
Hi David, The performance issues I wrote about are largely browser-independent, so probably this is not something related to the DOM recursing methods.. can you provide a example? -Paul 2006/12/18, blemming [EMAIL PROTECTED]: Paul, I just read your more recent post on your blog about

Re: [jQuery] jQuery Methods, a new plugin?

2006-12-18 Thread Paul McLanahan
This is pretty cool stuff. Not widely available yet, but it's in FF2.0. http://developer.mozilla.org/en/docs/New_in_JavaScript_1.7#Iterators On 12/17/06, John Beppu [EMAIL PROTECTED] wrote: I hope future versions of Javascript give us better ways to iterate. for-in is what's really broken.

Re: [jQuery] [Interface Elements] onChange callback BROKEN is sortables

2006-12-17 Thread Paul Bakaus
bugfixing, I'd be glad to gear from you, so we can speak about the plans. I rewrote a huge part of drag drop last week, after this is finished, sortables will be next. -Paul 2006/12/17, Roger Ineichen [EMAIL PROTECTED]: Hi Brice Thanks for the workaround. I realy like to see that the interface

Re: [jQuery] Interface status?

2006-12-17 Thread Paul Bakaus
-projects.de/ The new optimized libraries, which will be released soon, are written by me, earlier I did a lot of conceptual work together with Stefan. There is currently no real changelog and roadmap, but I'm planning to get something up and going. -Paul 2006/12/17, Oli Marteins [EMAIL PROTECTED

Re: [jQuery] Interface status?

2006-12-16 Thread Paul Bakaus
Hi David! Me and Stefan are constantly working on rewriting and optimizing parts of interface, and since I also need it on critical projects, maintenance of Interface is a big topic. What are you concerned in specifically? -Paul 2006/12/16, blemming [EMAIL PROTECTED]: I'm curious about

Re: [jQuery] animation error

2006-12-08 Thread Paul Bakaus
*I* do that and you see a lot more questions about them on the list than you do about .animate(). ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Paul Bakaus Web Developer Hildastr. 35 79102 Freiburg

Re: [jQuery] animation error

2006-12-08 Thread Paul Bakaus
Hi again, check out the current fx.js in SVN, I added the missing toggle method. Should work fine for now. -Paul 2006/12/8, Paul Bakaus [EMAIL PROTECTED]: Hi all, this is correct. Toggle never worked for me, this is something I noticed months before but forgot about it again soon after. I'm

Re: [jQuery] Efforts to Convert Folks to jQuery

2006-12-07 Thread Paul McLanahan
jQuery - Putting the DOM in its place. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] current jQuery version

2006-12-07 Thread Paul McLanahan
on the jquery.com server then I can do that. Otherwise, I could set it up on John's server if I had the proper access. It would be hard to provide a script w/o knowledge of install paths or file locations. Paul On 12/7/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Brian Miller schrieb: You know, we

Re: [jQuery] New Plugin: Ajax Popup Menu (still under development)

2006-12-06 Thread Paul McLanahan
I see a demo of jQuery where you create an iPod navigation clone with this. Excellent work. On 12/6/06, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: Thanks for your reply. I thought a bit about it. Even if it is Ajax and Web2.0ish, it can be very useful to relift the usability of certain

[jQuery] Get the Firebug 1.0 Beta!

2006-12-04 Thread Paul Bakaus
Hi guys, great news from Joe! Firebug 1.0 is now in open beta, everyone should be able to download it from getfirebug.com today later on (read the blog post). I'll stay idle pressing F5 until the link is there ;-) -Paul -- Paul Bakaus Web Developer Hildastr. 35 79102

Re: [jQuery] Get the Firebug 1.0 Beta!

2006-12-04 Thread Paul Bakaus
Update: It's on the main page, my page was just cached *dooh*! get it! 2006/12/4, Paul Bakaus [EMAIL PROTECTED]: Hi guys, great news from Joe! Firebug 1.0 is now in open beta, everyone should be able to download it from getfirebug.com today later on (read the blog post). I'll stay idle

Re: [jQuery] Get the Firebug 1.0 Beta!

2006-12-04 Thread Paul Bakaus
. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Paul Bakaus Web Developer Hildastr. 35 79102 Freiburg

Re: [jQuery] Using .addClass() to add dynamic class not for CSS

2006-12-01 Thread Paul McLanahan
. Hope this helps, Paul On 12/1/06, digital spaghetti [EMAIL PROTECTED] wrote: Hey folks, I am working on a Microcontent module for Drupal that uses jQuery, but I cannot seem to get that functionality to work. I need to ask, does .addClass actually add class text to a tag, or is it just applying

Re: [jQuery] iFxTransfer problem with IE

2006-12-01 Thread Paul McLanahan
Hi Nerique, Is el a jQuery object or just a DOM node? Do you have an example page where we could see the error? On 11/30/06, nerique [EMAIL PROTECTED] wrote: Hi, nodoby can help ? i m really annoyed and am not able to find a solution. If nobody wants to help me, could you please tell me

Re: [jQuery] Using .addClass() to add dynamic class not for CSS

2006-12-01 Thread Paul McLanahan
I'm using FF 1.5.0.8. How are you checking the div tags for the class? On 12/1/06, digital spaghetti [EMAIL PROTECTED] wrote: Paul, Actually it is working, Firebug has confirmed it for me, I was trying to view source in firefox. I just hope this means that MicroID checked can still pick

Re: [jQuery] IE7 native xmlhttp breaks load() ?

2006-12-01 Thread Paul McLanahan
You can also just pass your callback function as your 2nd parameter and the load function will realize that this is the case and use it as your callback. $(#ajax_episodebox).load(url, function() { // This line Paul On 12/1/06, Doug Tabacco [EMAIL PROTECTED] wrote: Worked like a charm. Thanks

Re: [jQuery] jquery thickbox on sourceforge.net

2006-11-29 Thread Paul Bakaus
___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- yours 齐永恒 ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Paul Bakaus Web Developer

Re: [jQuery] Interface Draggables/Droppables: New approach

2006-11-28 Thread Paul Bakaus
Hi again! Stefan and me are really hoping for a lot of feedback to this thread, since it's very important to us. Brendan, Jörn, John, Gilles, all the others, I would be glad to hear an opinion! 2006/11/27, Felix Geisendörfer [EMAIL PROTECTED]: Hi Paul, thanks for this update. Yeah your

Re: [jQuery] Interface Draggables/Droppables: New approach

2006-11-28 Thread Paul Bakaus
=dist http://developer.yahoo.com/yui/examples/dragdrop/targetable.html?mode=dist (notice how the applicable droppables are highlighted at the beginning of the drag in both cases) One thing I have not been able to see is the (-5px, -5px) mouse cursor displacement mentioned by Paul. In any case

Re: [jQuery] Interface Draggables/Droppables: New approach

2006-11-28 Thread Paul Bakaus
://jquery.com/discuss/ -- Paul Bakaus Web Developer Hildastr. 35 79102 Freiburg ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Change href of external links

2006-11-28 Thread Paul McLanahan
Actually, you have to check for href attribs that start with http but then make sure that they're not http://yourdomain.com; because IE will translate relative links into absolute ones in the returned string from aTagRef.href. I'd also make sure that they don't start with javascript: and mailto:;.

Re: [jQuery] Change href of external links

2006-11-28 Thread Paul McLanahan
); return false; }); } }); That way you can set up whatever strings you want to allow to be excluded in the allowedDomains array thus ensuring that the links you find really are external to your site's domain(s). On 11/28/06, Paul McLanahan [EMAIL PROTECTED

Re: [jQuery] Interface Draggables/Droppables: New approach

2006-11-28 Thread Paul Bakaus
@jquery.com http://jquery.com/discuss/ -- Paul Bakaus Web Developer Hildastr. 35 79102 Freiburg ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Interface Draggables/Droppables: New approach

2006-11-28 Thread Paul Bakaus
___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Paul Bakaus Web Developer Hildastr. 35 79102 Freiburg ___ jQuery mailing list discuss@jquery.com http

Re: [jQuery] OT: mail delivery

2006-11-28 Thread Paul McLanahan
I use gmail as well, but I've gotten some out of order before. I think the server has some off days from time to time. On 11/28/06, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: I use gmail, and have never gotten mail out of order. the reason you get them out of order is the nature of the SMTP network. I bet

[jQuery] Interface Draggables/Droppables: New approach

2006-11-27 Thread Paul Bakaus
of how many nodes you use for droppables and where the cursor position is. We are waiting for comments and ideas on this very important decision, since it will be a major rewrite and change. -Paul -- Paul Bakaus Web Developer ___ jQuery mailing list

  1   2   3   >