[jQuery] cluetip feature request: disable; clear cache

2008-11-30 Thread Eric Ongerth
Hello, I'm enjoying the jquery cluetip plugin -- it works very nicely and does what I want it to. But I have two requests. (1) $(foo).cluetip('disable'); This would disable the cluetip on a specific element or array of elements. $(foo).cluetip('clear_cache'); This would invalidate the cluet

[jQuery] Missing the previous jQuery site visual style?

2008-10-24 Thread Eric Ongerth
Hi everyone. I miss the previous visual design of the jQuery site... I was away for a few months and when I got back it looked like it had stepped a couple of years backward and taken on a very Rails-in-the- early-days look with that Trebuchet font and big empty sidebars... No offense intended t

[jQuery] Re: Seat reservation using jquery

2008-08-20 Thread Eric Ongerth
Your question is much too vague. If you can ask more specific questions you are more likely to elicit a helpful response. On Aug 19, 3:03 pm, Pankaj <[EMAIL PROTECTED]> wrote: > Hi, > > I am working on an application where I need to book online seats. For > that i need to first populate my pag

[jQuery] Re: Can Jquery Send variable value to external php

2008-06-08 Thread Eric Ongerth
http://docs.jquery.com/Ajax On Jun 8, 3:36 am, Maddy <[EMAIL PROTECTED]> wrote: > Is it possible to send a variable value to external php. > > how it can be done > > code: > > var myvar = document.title; > >  how to send this particular variable to a php script > > plz help

[jQuery] Re: Loading help with contextmenu plugin.

2008-05-28 Thread Eric Ongerth
Mauricio, This sounds like a good place to use the livequery plugin: http://docs.jquery.com/Plugins/livequery Its purpose: keeping events properly bound to elements that satisfy a selector even when the elements are loaded later, or loaded dynamically. Good luck. On May 27, 5:47 pm, Mauricio F

[jQuery] Re: Easy way to filter and sort a list

2008-05-17 Thread Eric Ongerth
Have you looked at http://plugins.jquery.com/project/autocompletex ? On May 16, 11:09 pm, hubbs <[EMAIL PROTECTED]> wrote: > Would i use .filter() for this? > > On May 16, 11:42 am, hubbs <[EMAIL PROTECTED]> wrote: > > > I am looking for a way to easily filter, and short a list. I found > > the

[jQuery] Weird Firefox error related to switching to jQuery

2008-05-14 Thread Eric Ongerth
I'm busily switching all my page templates from Prototype to jQuery. I'm getting the following error I never saw before (seen via Firebug) on a page that has been entirely changed over to jQuery, with prototype all gone and no longer included/loaded. [Exception... "Component is not available" ns

[jQuery] Re: Syntax question regarding value of currrent element being clicked.

2008-05-13 Thread Eric Ongerth
Do you understand why? It's not the event that has the value that you wish to submit. What has the needed value is the object whose "onchange" callback is currently being executed. And since we're in that callback at the moment, it just so happens that the identifier "this" refers to the callba

[jQuery] Re: why is droppable() 's init method trying to read outerWidth() of a div?

2008-05-13 Thread Eric Ongerth
along with > it. > > -- > Brandon Aaron > > On May 11, 8:59 pm, Eric Ongerth <[EMAIL PROTECTED]> wrote: > > > Oh, ok.  Thank you.  The jQuery website gave me no idea that jquery ui > > 1.5b4 was dependent on jquery 1.2.4a.  In fact I had no idea 1.2.4a >

[jQuery] Re: how can a landing page verify that the user has logged in?

2008-05-13 Thread Eric Ongerth
Typical behavior is for the username and password to be sent to the server for verification. What you do to accomplish this on the server side is a matter of what web development framework you are using... Ruby on Rails, for example, or Django, or a zillion other options... or something you creat

[jQuery] Re: JQ Comments and Bug help

2008-05-13 Thread Eric Ongerth
Exactly which jquery files are you using when you get these errors? Which version of jquery and which version of jquery-ui? I had several similar (though not identical) problems with ui.droppable() recently, and the solution involved matching jquery 1.2.4a with jquery-ui 1.5b4. jquery 1.2.3 ca

[jQuery] Re: drag & drop post to db

2008-05-13 Thread Eric Ongerth
Answering would be easier if you could follow the convention of posting your question in the form of a question. On May 11, 11:43 pm, teazer <[EMAIL PROTECTED]> wrote: > After way too many hours wasted, I find I have to ask for help. I am a > coldFusion programmer and a neophyte at jquery. > > I

[jQuery] Re: why is droppable() 's init method trying to read outerWidth() of a div?

2008-05-11 Thread Eric Ongerth
rWidth. > > -- > Ariel Fleslerhttp://flesler.blogspot.com > > On 11 mayo, 21:59, Eric Ongerth <[EMAIL PROTECTED]> wrote: > > > Take a look the following from jquery.ui-all-1.5b4.js: -- it's inside > > of the droppable() method's init method:

[jQuery] why is droppable() 's init method trying to read outerWidth() of a div?

2008-05-11 Thread Eric Ongerth
Take a look the following from jquery.ui-all-1.5b4.js: -- it's inside of the droppable() method's init method: 802 //Store the droppable's proportions 803 this.proportions = { width: this.element.outerWidth(), height: this.element.outerHeight() }; I have been stuck for a while on an error this