Re: [jQuery] JQuery and CakePHP (slightly OT)

2006-12-14 Thread Will Jessup
Does anybody care about Symfony-project and jQuery? ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] php , ruby jQuery devs

2006-12-04 Thread Will Jessup
Hey guys, Probably not the place to post this but its very hard to find good people to work with and I know the people working with jQuery are above the average. Anyhow, I'm looking for a couple back-end (rails , PHP db) and front-end guys to work with. I'm located in LA and work on sites

Re: [jQuery] Building a Community

2006-11-07 Thread Will Jessup
Guys, we can also post updates to the blog more often. That being said, the wiki could be made a bit more extensive with more examples and such. The initial jQuery examples when you first hit the site are not very convincing and do not explain WHAT jQuery is and why it is better. What is

Re: [jQuery] ajax periodic refresh

2006-11-01 Thread Will Jessup
Klaus , There is. It uses the if-modified request header thingamajig. I have an example i'm going to use on kevo if needed as well Will roykolak schrieb: I'm thinking too hard... Sometimes I forget that jquery is not a replacement for javascript. Thanks Guys, Roy I forgot to

Re: [jQuery] form validation w/ simple ajax

2006-11-01 Thread Will Jessup
might want to look here: http://www.willjessup.com/sandbox/jquery/form_validator/form_validate.html Blair, Thanks for the response. I was trying to return a true or false with: function(json) { eval(var args = + json);

Re: [jQuery] Oooh! These are pretty!

2006-10-27 Thread Will Jessup
Dan , Those would be great for force directed node graphs. Hrm Will I'm not sure about the technical merit of drawing 100 circles on a screen to drag around, or what the point of it would be. The same thing could be achieved with jQuery and draggables in Interface. The result wouldn't be

[jQuery] List - getting children

2006-10-17 Thread Will Jessup
Hello list, Have a question about how to grab elements that were put into the DOM w/ .append(). For example, div id=links div one/div div two /div /div Then i do this in javascript $(#links).children().remove(); //removes the divs with one and two var data = [div one/div, div two

Re: [jQuery] jQuery API discussion

2006-10-16 Thread Will Jessup
Should keep it simple. changing .load to .ajaxLoad is even unneccessary. e.g.: $( '.b0rp' ).filter( '#blap' ).on.click( function() { $( '#foo' ).ajax.load( ... ) } ); Why no just do .onclick() and .ajaxLoad() - like what was proposed? Not only is it fundamentally easier to write and

Re: [jQuery] Benchmark: Prototype and jQuery

2006-10-15 Thread Will Jessup
Looks like jquery and prototype both win and lose nearly the same amount of tests. They also didn't factor in the initial loading size of the prototype library, or the time saved by writing jquery syntax. This is about as fair as a political debate. Will hey all, anyone else seen this too?

Re: [jQuery] 3D Carousel

2006-09-30 Thread Will Jessup
Stefan , Should use my 3d rotator for this ^_^ will http://interface.eyecon.ro/development/demos/carousel.html ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ ___ jQuery

Re: [jQuery] When / how did you find out about jQuery?

2006-09-27 Thread Will Jessup
I found it through thickbox, i think on june 2nd. At that time I had it working with prototype and moo.fx ... but shortly ditched those and now am only using jQuery and a few plugins for www.kevo.com I've used it since at least January 2005 (at least that was the first time I emailed John

Re: [jQuery] interesting syntax

2006-09-27 Thread Will Jessup
Todd , From my understanding its partly for variable scoping, partly for garbage collection and part of a pattern to emulate classes. I did a posting of the full pattern here: http://www.willjessup.com/?p=35 Will Hello, I've been poking around a bit in the jQuery source code. It's been

Re: [jQuery] interesting syntax

2006-09-27 Thread Will Jessup
Michael, comments inside Here's a pattern that occurs frequently that I'm really curious about: new function() { // do stuff } Is the purpose of this just to provide local scope to the variables used? Yes, that is the one and only reason for it. Is there an equivalant

Re: [jQuery] tweenbox plugin - in IE not working, please fix

2006-09-26 Thread Will Jessup
Nilesh , There are some bugs that were to be resolved in jQuery core. I need to check the trac and see if they got fixed, then I plan on updating the script and releasing it. I think it has some crazy jello-tween right now, haha, but forgot where I left off. Will Hey, anyone know the

Re: [jQuery] Cool technique

2006-09-25 Thread Will Jessup
Dan , Just append the DOM w/ a paypal donate button. Ajax has been successfully implemented, now send me cash to continue The title was 'cool', not 'accessible'! ;-) You're probably right, but somehow text with large letters saying 'SUCCESS' or 'FAILURE' just don't seem 'cool' enough.

Re: [jQuery] how to get the display value of an element?

2006-09-25 Thread Will Jessup
www.visualjquery.com go to .css Will I am writing a routine that can accept any element. I need to determine whether the element is displayed inline, as a box or some other display type. Is there a way to determine this if it has not already been set by a style? An unstyled A tag

Re: [jQuery] tweenbox - image gallery

2006-09-19 Thread Will Jessup
image? Will Jessup wrote: Dan, Its not loading a %, though. Just a loop counter for each 10ms check. Will A tiny suggestion: $(#tweenLoad).html('Loading ' +k+'%'); Instead of the other one: $(#tweenLoad).html('loading' +k ); I really like it. The 'bounce' effect looks cool too

Re: [jQuery] tweenbox - image gallery

2006-09-17 Thread Will Jessup
the transitions between images and the next/previous buttons, but you're missing some great features from ThickBox. For instance, I'd like to see you add ThickBox's support of 'rel=group_name' to automatically create a gallery. Nice improvements, though. Thanks, John Will Jessup wrote

Re: [jQuery] New plugin: cookie

2006-09-16 Thread Will Jessup
Klaus , Very sweet. Will Hi all, I made a cookie plugin and added it to SVN. Contrary to my latest mail regarding this I made the plugin in a more jQuery style, there's only one basic $.cookie function. Read a cookie: $.cookie('the_cookie'); Set a cookie: $.cookie('the_cookie',

[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 slider

2006-09-13 Thread Will Jessup
In safari clicking on the scrollbar in the slider will make it shift left and do weird z-index stuff. Anyone else having this problem? Will ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] iSortable iSlider help

2006-09-13 Thread Will Jessup
Hello, I'm doing a script that requires combining iSortable, iSlider and others into one over-done interface. Anyway, There are a few bugs I havn't been able to solve so i'm wondering if anyone can point me in the right direction or help me out (paid work).

Re: [jQuery] Sending JSON from client to server

2006-09-13 Thread Will Jessup
Chris , Sure - just go here http://www.json.org/ and get the JSON library for whatever language you are using. It will take an incoming JSON object and translate it to an array in your language of choice. you can then act on it with (say php) do some stuff, and take your new array (generated

Re: [jQuery] scrollbar

2006-09-08 Thread Will Jessup
Stefan, Thanks - that's better than what i put up. I also noticed that in my version I had to actually add 1 pixel to the x y values in the dragStart method or else each time i clicked on the element it would jump up and to the left 1 pixel. (fyi) Will Will Jessup wrote: Ack, ok i

Re: [jQuery] jQuery easing plugin - pre release

2006-09-07 Thread Will Jessup
George, This is fantastic. I'm going to integrate it w/ tweenbox here - http://www.willjessup.com/sandbox/jquery/tweenbox/tweenbox.htm Can't wait to see the elastic on that. Lol. Will Hi All, What it does: Overwrites the standard animate functions with custom easing functions from Robert

[jQuery] jQuery scrollbar

2006-09-07 Thread Will Jessup
Ahoy list, Is there a good jQuery scrollBar out there? I started using the iDrag library from interface which I think may lead to half of the solution but didn't see a clear way to rig things up because the onDrag method is a bit slow (or i'm doing something wrong). If anyone can point me to a

Re: [jQuery] scrollbar

2006-09-07 Thread Will Jessup
Ack, ok i asked about the scrollbar stuff too soon - figured it out: http://www.willjessup.com/sandbox/jquery/scrollbar/scrollbar.html need some work, but i think that should do it (for me at least) Will ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Removing a click handler

2006-09-07 Thread Will Jessup
Or can do var yoda = function() { my click action } ; //onload $('#mydiv').bind(click, yoda); //whenever $('#mydiv').unbind(click, yoda); You should just be able to say $('#mydiv').unclick(myfunction) Brandon On 9/7/06, Sam [EMAIL PROTECTED] wrote: Once a handler is assigned

Re: [jQuery] AJAX loadIfModified() problems

2006-09-06 Thread Will Jessup
David, are you loading the if-modified-since header from your target script? ? header(if-modified-since ... something like that WIll I seem to be having some challenges with the loadIfModified(url) function. Is the remote HTML injected if anything is returned by the URL, or if only what is

Re: [jQuery] opacity in msie?

2006-09-05 Thread Will Jessup
El Rocco , I think john posted something similar as a bug tonight , there is a problem w/ fadeTo in IE in the .css function. Will Hi there guys! Just wanted to make sure that if I check the opacity css property, IE will not return null (it was in some tests I did). I checked the source

[jQuery] sortable problem

2006-09-03 Thread Will Jessup
List Stephan, I'm trying to work w/ sortables here but running across an issue whenever i use an FX. http://www.willjessup.com/sandbox/jquery/sortable/hybrid2.html If you select an item, then w/out moving it unselect it , you won't be able to re-select the item. Then, if you select an item

[jQuery] getIfModified

2006-08-29 Thread Will Jessup
List, I'm looking to see if anyone has experience w/ $.getIfModified in the ajax plug-in. I'm trying to return the GET only if the contents are modified (such as opening a 30 second timeout where it listens for a request, closes if there is nothing and re-opens or returns what it gets if

[jQuery] help w/ getIfModified

2006-08-29 Thread Will Jessup
Still working on the GetIfModified as outlined here: http://www.mail-archive.com/discuss@jquery.com/msg00481.html Any examples of how to use this properly? I'm not sure how to grab the states success, failure, notomdified etc. will ___ jQuery

Re: [jQuery] help w/ getIfModified

2006-08-29 Thread Will Jessup
Shawn , Ah so obvious now, thx. Will On 8/29/06, *Will Jessup* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Matt, Hehe. well jQuery has quite a bit of cool code I just can't seem to get it to work. Firstly it seem the functions $.ajaxStart, $.ajaxComplete etc

Re: [jQuery] help w/ getIfModified

2006-08-29 Thread Will Jessup
comes from - since res does not exist before the function in the code how can it be a variable in the function? On 8/29/06, *Will Jessup* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Matt, Hehe. well jQuery has quite a bit of cool code I just can't seem to get

Re: [jQuery] Quantum computing in jQuery: $().unload()

2006-08-27 Thread Will Jessup
Michael , So just by looking at the state of the system i change it? The advanced event plugin creates three $() methods for each event: a binding method foo(), a one-shot binding method onefoo(), and an unbinding method unfoo(). Two of the events that this plugin wraps are the load and

Re: [jQuery] 3d Universe in jQuery

2006-08-24 Thread Will Jessup
Patrick , Ahaha, or I could add on the other 3 sub-planets? Anyway I can't debug this in IE because of some swedish tendancies of mine tward certain large corporate software required for debugging. So if anyone has some freetime and wants to debug in IE that would rule. Will Hey, doesn't