[jQuery] Re: keyup() fires multiple times?

2010-03-01 Thread Keith Hughitt
s for key-holds to behave like key-holds so no problem exists. Any suggestions for normalizing behavior across platforms? Keith On Jan 5, 3:38 pm, Keith Hughitt wrote: > Hi all, > > I'm creating a method for the first time which causes some action to > happen while a key is

[jQuery] keyup() fires multiple times?

2010-01-05 Thread Keith Hughitt
Hi all, I'm creating a method for the first time which causes some action to happen while a key is pressed. I've noticed, however, that the 'keyup' event which I would normally use to determine when the key is released is fired continually, even when the key is still being pressed. e.g. http://

[jQuery] Re: Help with Datepicker

2009-12-04 Thread Keith
You also need to tell it to use a button to trigger the popup using the showOn setting. Set it to 'button' to only popup on the button click and not on focus, or 'both' to show on either. ('#MembershipWizard1_Wizard1_ctl05_ClubConfirmation1_txtStartDate').datepicker ({ dateFormat: 'dd/mm/yy',gotoC

[jQuery] Refreshing droppable locations

2009-11-05 Thread Keith Otto
I have a list, with many levels of child lists within some LI elements. These child lists are set to display:none until you click on their parent to display the first level of children. I'm implementing the ability to drag the LI elements around in order to change their parent to a different item.

[jQuery] Re: Inline Datepicker Help

2009-10-23 Thread Keith
1) Within the onSelect function, 'this' refers to the input field. So you can find the field's position using standard jQuery: $(this).offset (). Then place your popup of events accordingly. 2) You can use the beforeShowDay setting to highlight dates. This is a function that takes a date and retu

[jQuery] Re: listnav letter question?

2009-07-24 Thread keith . westberg
rowser and version, so I can normally get away with much less test overhead than the will wild west... =) Cheers, Keith /// function addClasses() { var str, firstChar; var temp; $($list).children().each(function() { // ORIGINAL // $(this).text

[jQuery] Re: JQUERY ListNav, can't figure how to make it work

2009-07-23 Thread keith westberg
It looks like you have the listnav script file loaded three times... this may be causeing it. Prob only need one of these. Keith On Wed, Jul 22, 2009 at 5:20 PM, Carina wrote: > > http://www.cascade-usa.com/default.aspx?page=customer&file=customer/caorsu/customerpages/sales

[jQuery] listnav letter question?

2009-07-21 Thread keith
look forward to using it in future projects. Respectfully, Keith

[jQuery] TreeView - New Color

2009-07-13 Thread Keith
Hello, Is there a psd or some other kind of editable image that someone can send me so I can make different colored themes? Thanks. Keith

[jQuery] Re: TreeView Problems

2009-07-08 Thread Keith
> > $.cookie(settings.cookieId, data.join(""), { path: '/' } ); > > Jon > > 2009/7/6 Keith > > > > > Here is the menu that I'm trying to implement.  I'm not sure what I'm > > doing wrong, I've followed all of the demos a

[jQuery] TreeView Problems

2009-07-06 Thread Keith
Contracts (Renewals) New Contract/Estimate Keith

[jQuery] Re: jQuery Countdown and close button

2009-07-05 Thread Keith
The problem is that the closeButton setup is called immediately it is encountered - before the button itself exists - so no match and nothing happens. You need to move the $('#closeButton').click(function () { ... }); inside the document ready call: $(function () { ...}).

[jQuery] Re: TreeView Cookie Persistence Problem

2009-07-02 Thread Keith
Can anyone point me in the right direction with this problem? TIA On Jun 30, 1:38 pm, Keith wrote: > Hello, > > I'm having some issues using the cookie persistence, it appears that > as long as the link is in the jsp directory the menu renders properly, > however if the li

[jQuery] TreeView Cookie Persistence Problem

2009-06-30 Thread Keith
Hello, I'm having some issues using the cookie persistence, it appears that as long as the link is in the jsp directory the menu renders properly, however if the link is not in the jsp directory the cookie is set to null and when the page loads all of the trees are expanded. Any help would be gr

[jQuery] jQuery unbind not working in greasemonkey ... simple test case included

2008-12-23 Thread Keith Bentrup
ded & comment out its jQuery script and head script to make sure that there is no conflict. You see the same behavior.) Thanks, Keith ps. I realize this may be a GM isse and not a jQuery issue, but any insight is appreciated. unbind.html src: Testing unbind http://ajax.googleapis.com/aj

[jQuery] Temporarily disabling events?

2008-08-27 Thread Keith Hughitt
class (e.g. "disabled") to each other button, and remove it once the animation is done. There are probably better ways than this, however. Any ideas? Thanks, Keith

[jQuery] Passing around sibling nodes in jQuery?

2008-08-21 Thread Keith Hughitt
was hoping to return them to be inserted into the list: return term.after(defn); However only one of the nodes gets returned. I could wrap them in a single container, return that container, and then take them back out, but that is somewhat roundabout. Any ideas? Thanks, Keith

[jQuery] Re: Selecting unusual CSS identifiers

2008-08-20 Thread Keith Hughitt
Thanks! It worked perfectly with with jQuery. I had tried using single backslashes to escape, but never thought to try two. I appreciate the explanation as well :) Take care, Keith On Aug 19, 4:26 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote: > Use two backslashes

[jQuery] Re: how to add a delay to tooltip removal

2008-08-20 Thread Keith Hughitt
Hey Jörn, Any chance you might also be able to allow having events displayed on after an element is clicked? This would also help get around the problem of including URL's inside tooltips. Thanks, Keith On Jul 15, 2:09 pm, Matt <[EMAIL PROTECTED]> wrote: > Thanks Jorn, since

[jQuery] Selecting unusual CSS identifiers

2008-08-19 Thread Keith Hughitt
ass "first::second." Any ideas? Thanks, Keith

[jQuery] Re: Feedback for new plugin idea: ui.querybuilder

2008-07-21 Thread Keith Hughitt
ind of results-display do you propose? Again this isn't something I plan to handle. Although it certainly would be possibly to envision a search plugin that not only generates and sends off queries, but also displays the results, I plan to focus only on the query interface end of things. The result

[jQuery] Feedback for new plugin idea: ui.querybuilder

2008-07-18 Thread Keith Hughitt
ional) Names of other criterion required for this one to be used - "provides" (optional) If present criterion becomes active, add these to the list of inactive. E.g. If the user choses "Automobile", add the search criterion "Number of Wheels." to the list. V. Conclusion There are still some details that need to be hammered out, but this is the idea in a nut-shell. What do people think about it? Any ideas or suggestions? Any feedback would be greatly appreciated. Take care, Keith

[jQuery] Re: Dynamically change slide transitions in before callback function

2008-06-25 Thread Keith
Hi again, I've gotten a little bit further with this to the point where it displays my new effect but unfortunately it also seems to be trying to do the old effect as well which looks awful. Has anyone got any ideas??? Thanks Keith On 24 Jun, 17:08, Keith <[EMAIL PROTECTED]>

[jQuery] Dynamically change slide transitions in before callback function

2008-06-24 Thread Keith
ain a bit more about how the transitions are setup so that I can code in the functionality that I need. Thanks for your time in advance. Keith

[jQuery] Re: Using ScrollTo to Scroll to DIV and center it in thw window

2008-01-29 Thread Keith
ntent ? > > Ariel Flesler > > On 25 ene, 18:20, Keith <[EMAIL PROTECTED]> wrote: > > > I would like to have a navigation in my DIV's that allows me to jump > > around to other DIV's placed around the screen. Right now here is what > > I have using Sc

[jQuery] Using ScrollTo to Scroll to DIV and center it in thw window

2008-01-25 Thread Keith
I would like to have a navigation in my DIV's that allows me to jump around to other DIV's placed around the screen. Right now here is what I have using ScrollTo: http://www.keithmuth.net/jquery/ I would like to keep the DIV's centered in the screens at all times, whether you jump to it through t

[jQuery] Better way of finding another descendant of an ancestor?

2007-11-28 Thread Keith Grennan
Hi everyone, I find myself doing this a lot, and thinking there must be a more elegant way... Click me $("#clickme").bind('click', function() { var container = $(this).parents('.A'); var findme = $('.findme', container); }); Is there a way to make those two traversals into a single jQ

[jQuery] Text Flickering/Distorting with Drop Down Menu (Superfish Javascript)

2007-11-02 Thread Keith
e this one, please let me know. I could do it in CSS but would like to have a nice slide and/or fade transition like the Superfish menu offers. Thanks, Keith