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

2010-03-01 Thread Keith Hughitt
is 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 keith.hugh...@gmail.com wrote: Hi all, I'm creating a method for the first time which causes some action to happen while a key is pressed

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

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

[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

[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

[jQuery] Re: listnav letter question?

2009-07-24 Thread keith . westberg
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().replace

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

2009-07-23 Thread keith westberg
/jquery.listnav.pack-2.0.js/script script type=text/javascript src=/customer/caorsu/customerpages/jquery.listnav.min-2.0.js/script Keith On Wed, Jul 22, 2009 at 5:20 PM, Carinacarinaroche...@gmail.com wrote: http://www.cascade-usa.com/default.aspx?page=customerfile=customer/caorsu/customerpages/salesflyer.html

[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 keithhen...@gmail.com 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 and still the menu is not properly setting the cookie, which is causing

[jQuery] TreeView Problems

2009-07-06 Thread Keith
a href=/mars/contrax/systemselect.jspNew Contract/Estimate/ a /li /ul /li /ul /div /body 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 keithhen...@gmail.com 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 link

[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

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

2008-12-23 Thread Keith Bentrup
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: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN html head titleTesting unbind

[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
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 before each special character

[jQuery] Selecting unusual CSS identifiers

2008-08-19 Thread Keith Hughitt
ideas? Thanks, Keith

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

2008-07-21 Thread Keith Hughitt
to the developer to create. Thank you both for the feedback and suggestions. Please let me know if you have any other thought or ideas. Take care, Keith And what kind of results-display do you propose? On Jul 18, 3:13 pm, Rene Veerman [EMAIL PROTECTED] wrote: I like the idea for this plugin, but fear

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

2008-07-18 Thread Keith Hughitt
. 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] wrote: Hi, I've

[jQuery] Dynamically change slide transitions in before callback function

2008-06-24 Thread Keith
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
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 ScrollTo:http://www.keithmuth.net/jquery/ I would like to keep the DIV's centered

[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

[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... div class=A div class=A1 a href= id=clickmeClick me/a /div div class=A2 div class=findme/div /div /div $(#clickme).bind('click', function() { var container = $(this).parents('.A'); var findme =

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

2007-11-02 Thread Keith
. 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