[jQuery] Re: How to use this this event which has been passed to a function as a parameter

2009-08-11 Thread Russell Joti
doh! i never even noticed the missing (), thanks. On Aug 12, 12:42 pm, James james.gp@gmail.com wrote: This: $(obj).parent.addClass(newstyle); should be like: $(obj).parent().addClass(newstyle); On Aug 11, 1:08 pm, Russ rustyj...@xtra.co.nz wrote: Hello, I have a link; a

[jQuery] File upload using HTTP PUT method

2009-07-31 Thread Russell Neufeld
Hi all, Does anyone know if it's possible to transform an input type=file id=uploadedFile... into an HTTP PUT request? Seems like you can do this in Firefox with something like this: fileContent = $('#uploadedFile').files.item(0).getAsBinary(); req = new XMLHttpRequest(); req.open(PUT,

[jQuery] Re: TreeView question

2009-06-23 Thread Russell
Any help appreciated! On Jun 18, 9:39 am, GTGeek88 russcampb...@interthink.com wrote: I'm looking at using the treeview plugin by Jorn.  What I'm wondering is how to get folders added at a particular spot and how to manage folders by dragging them around (or in some other fashion).  Perhaps

[jQuery] Re: How to queue up ajax requests?

2008-07-16 Thread Scott Russell
On Tue, 2008-07-15 at 21:46 -0700, partner56290674 wrote: it's possible to possibly wait for the user to stop panning. Currently, when the pan ends, an onEnd event is fired, which then fires off the ajax. So what you're suggesting is that i queue the pan onEnd events? I recently needed some