Re: [jQuery] Round corners for IE

2010-02-01 Thread Jack Killpatrick
I've had good luck with this plugin: http://www.parkerfox.co.uk/labs/cornerz - Jack Erik wrote: Whats the latest solution for achieving round corners for IE. I've been using these in my css for all my 's: -moz-border-radius-bottomright: 6px; -khtml-border-radius-bottomright:

Re: [jQuery] New Forums

2010-01-21 Thread Jack Killpatrick
A little quibble I'd like to add is that, as a plugin developer who has been relying on filtering incoming emails to support the plugins, now I have no way to easily do so, since the forums can't email me everything that's happening. I think a workaround is being instated, but I'm not sure. I'v

Re: [jQuery] Complicated Question

2010-01-16 Thread Jack Killpatrick
If you're rendering the button on-the-fly (as part of your form) be sure to either a) hook up that button click handler after the button is rendered or b) use the event delegation approach I showed in my example. It sounds like your click is not firing now, probably because the click isn't actu

Re: [jQuery] Complicated Question

2010-01-16 Thread Jack Killpatrick
If uRec is still like it was before: function uRec(selector){ var $form = $(selector); in the example below you're passing it an id, so try: var $form = $('#' + selector); I was suggesting changing the button type from submit to button, yes. It's no big deal, but at least it will preven

Re: [jQuery] Complicated Question

2010-01-16 Thread Jack Killpatrick
This may or may not help you, but often in situations like this what I do is use .closest() to get the id that I need for the edited record, like this: your form gets injected here your form gets injected here assuming each form has it's own submit button, you could use event delegati

Re: [jQuery] Listmenu Question: Number of returned lines...

2010-01-14 Thread Jack Killpatrick
Each browser performs differently, because of how the plugin takes the original set of DOM nodes (list items, usually) and moves them around in the DOM. Basically, IE6 sux wind, but IE7+ is OK. Safari and Chrome seemed to be the fastest in my not-so-scientific tests. Firefox 3+ was OK. I didn'

Re: [jQuery] Re: ANNOUNCE: new rev of credit card validation extension

2010-01-13 Thread Jack Killpatrick
ge did the trick for you, if you have a sec. Thanks, Jack Leo Balter wrote: Impressive, but I really tought it was another spam incomming by reading only the subject. 2010/1/13 dnfdrmn mailto:dbfeder...@gmail.com>> Terrific! Downloading and installing now. Very impressive plugin, bt

[jQuery] ANNOUNCE: new rev of credit card validation extension

2010-01-13 Thread Jack Killpatrick
Hi All, We've released a new version of our jQuery Validation plugin credit card extension. Changes include: 1. updated card prefixes (including latest Discover Card changes) 2. support for LaserCard More info here: http://www.ihwy.com/labs/jquery-validate-credit-card-extension.aspx We have

Re: [jQuery] iHwy creditcard2 validation extension fails on some Discover cards

2010-01-12 Thread Jack Killpatrick
Hi, We've made the change to the plugin and are hoping to deploy it tonight. After it's deployed I'll post an ANNOUNCE here. Thanks for bringing this to my attention. We also added LaserCard support and updated some other card prefixes. - Jack dnfdrmn wrote: Hi all, We're working with Pay

Re: [jQuery] Re: Looking for that plugin that uses scrollTo for product demos...

2010-01-04 Thread Jack Killpatrick
Maybe this? http://www.slidedeck.com/ - Jack kgosser wrote: bump. any thoughts? On Dec 17 2009, 6:24 pm, kgosser wrote: Hey all, I saw this site a few months ago that was showing off a new plugin which used the scrollTo tool to scroll through one screen shot. I can't seem to find it wit

Re: [jQuery] Checkboxes in Combobox

2009-12-17 Thread Jack Killpatrick
It's not a combo box, but: http://abeautifulsite.net/2008/04/jquery-multiselect/ - Jack jambik wrote: I'm looking plug-in that allows to put checkboxes into combobox element.

Re: [jQuery] Share plugin

2009-12-04 Thread Jack Killpatrick
I recommend that you post a page about it, with a demo, add it to the jquery plugins directory and make an announcement on this list. I'd like to see what you've done, if you have it up somewhere. I find myself needing that often and have used various solutions with varying degrees of success.

Re: [jQuery] listnav - how to implement paging

2009-12-04 Thread Jack Killpatrick
How do you picture paging working, from a UI perspective? -Jack prasad wrote: Hi, I like the 'jQuery ListNav Plugin' very much and i need to implement it in my application. I need to implement the paging functionality along with this plugin. If i have more than 100 rows for a character, its b

[jQuery] Re: listmenu

2009-10-24 Thread Jack Killpatrick
e the menu showing until we click another letter. similar to list nav. Maybe it's just better to use listnav. Rui Lobo R.Solve 2009/10/24 Jack Killpatrick mailto:j...@ihwy.com>> HI, Glad you like the plugin. I'm not sure what you mean about disappearing on mous

[jQuery] Re: listmenu

2009-10-23 Thread Jack Killpatrick
HI, Glad you like the plugin. I'm not sure what you mean about disappearing on mouseout. Can you clarify that for me? Thanks, Jack Rsolve wrote: hi, first of all, great plugin is it possible to make lm-wrapper not disappear on mouseout ? it would be just what i need. Thanks

[jQuery] Re: A quick note about CFJS

2009-10-15 Thread Jack Killpatrick
Great, thanks for the announcement. BTW. $.DollarFormat is a fav ;-) - Jack Chris Jordan wrote: I just wanted to let everyone know that CFJS 1.1.11 is now available. There was a small bug in two of the list functions (ListContains and ListContainsNoCase). You can read about the changes here <

[jQuery] Re: keeping table header fix

2009-10-02 Thread Jack Killpatrick
Hmm, I gave this a try. Setting height stretches the table rows out vertically if there are less records than the height. I tried putting a fixed height div around the table and not setting a height on the tbody, but then the tbody overflow-y never kicks in. Hmm. Also, if I set the height of t

[jQuery] Re: keeping table header fix

2009-10-01 Thread Jack Killpatrick
bump... anyone know? If there's no nice css way, maybe a jquery way? Would be nice if overflow:auto had an overflow:horizontal/vertical option, I think. Thx, Jack Jack Killpatrick wrote: That's a neat trick I haven't tried before. Is there an easy way to deal with (as in h

[jQuery] Re: keeping table header fix

2009-09-30 Thread Jack Killpatrick
That's a neat trick I haven't tried before. Is there an easy way to deal with (as in hide/remove) the horizontal scrollbar that also appears? Does that work across browser? I've just tried FF so far. Thx, Jack Matt wrote: On Sep 16, 7:55 pm, Macsig wrote: Yes, I do but I don't see how th

[jQuery] Re: is there a JQuery solution for multiple sticky tooltips?

2009-09-17 Thread Jack Killpatrick
You might be able to use the show, hide and destroy methods here to make sticky tooltips: http://craigsworks.com/projects/qtip/docs/api/ but I don't think there's support for dragging. I used this library recently and found it to be solid across browsers, FYI. - Jack rvdb wrote: Hi, I'm

[jQuery] Re: ANN "eyedropper" color picker plugin

2009-09-16 Thread Jack Killpatrick
great, thanks. This would be really handy as a greasemonkey script. I use a FF plugin that does the eyedropper thing a lot (during design work), but it has it's shortcomings. If a greasemonkey script gave me the eyedropper and a box with the sampled color and hex value, that'd be rad. - Jack

[jQuery] Re: ANN "eyedropper" color picker plugin

2009-09-16 Thread Jack Killpatrick
Sounds cool, consider this some clamor for a live demo :-) Thanks, Jack Scott Trudeau wrote: [cross posted from the plugin list, which seems to have died in February] Hey folks, I've been absent from the jquery lists for quite awhile, but just recently had the opportunity to build a cool lit

[jQuery] Re: JQUERY listnav: includeAll Parameter translation

2009-09-16 Thread Jack Killpatrick
I like that, will definitely consider it for the next rev. If you want to change it in the version you have, look for this: >ALL< and change it to whatever you want: >Alle< Thx, Jack mansoft wrote: It would be nice, if the "includeAll" parameter could be changed or extended to work like t

[jQuery] Re: Twitter for support?

2009-09-13 Thread Jack Killpatrick
My feeling is that without threaded discussions doing support via Twitter feels a but clunky. I usually end up taking the conversation into direct messages, which then feels like a workaround and doesn't really contribute to the community, since the solutions end up being in DM's (not searcha

[jQuery] Re: jquery form plugin upload problem

2009-09-12 Thread Jack Killpatrick
Thanks, Mike, it magically started working for me. I must have had something else cheesed ;-) Appreciate your response, it seems to be working nicely now. - Jack Mike Alsup wrote: I'm using the latest version of the jquery form plugin (from MAlsup) for file uploading. The upload works: the se

[jQuery] jquery form plugin upload problem

2009-09-11 Thread Jack Killpatrick
Hi All, Hoping someone can help me out with this, been stuck on it for a while: I'm using the latest version of the jquery form plugin (from MAlsup) for file uploading. The upload works: the server call happens, the file data makes it there and the server returns a value, in this case just a

[jQuery] Re: listnav functionality applied to tables -- is this possible?

2009-08-31 Thread Jack Killpatrick
I'll chew on that idea for a while. If I think I can pull that off without much surgery to the plugin, I'll add it, otherwise probably not. This is the first time someone has requested that. Thanks, Jack wshawn wrote: I am curious if the devs would be interested in making this same function

[jQuery] Re: Is there a 'dropdown button' plugin?

2009-08-28 Thread Jack Killpatrick
maybe this? http://www.givainc.com/labs/linkselect_jquery_plugin.htm - Jack donb wrote: That's what I'd call it, anyway. This would be a captioned button with a small arrow you'd click on. That would drop down a list of button captions, changing the caption of the button when it collapses.

[jQuery] Re: rounded corner recommendations

2009-08-28 Thread Jack Killpatrick
I've had good luck with this one after testing many of them in multiple browsers: http://www.parkerfox.co.uk/labs/cornerz - Jack Rich Sturim wrote: Greetings, Can people recommend a rounded corners plugin that is stable on a wide array of browsers? I've been hunting around -- and found a

[jQuery] Re: Plugin to let the user draw rectangles

2009-08-21 Thread Jack Killpatrick
That's realy cool, Richard. Thanks for sharing it. :-) - Jack Richard D. Worth wrote: Here's a slightly improved version. Thanks @cioa demo: http://jsbin.com/azare code: http://jsbin.com/azare/edit - Richard On Fri, Aug 21, 2009 at 3:59 PM, Richard D. Worth

[jQuery] Re: jquery menu that works with ie6 (plugin?)

2009-08-20 Thread Jack Killpatrick
I've used this in a bunch of sites that had to work in IE6: http://jdsharp.us/jQuery/plugins/jdMenu/ - Jack con-man-jake wrote: Can anyone recommend a jquery menu plug that works with ie6? I have a menu done with s and s with pure css. It doesn't work with ie6 (because it's pure css.) I we

[jQuery] Re: Listmenu - tips for making it faster in IE

2009-08-14 Thread Jack Killpatrick
Hi Anoop. I spent considerable time tuning the code for performance, but yes, IE does lag behind, especially when approaching 1000 items or more. I found Safari and Chrome to both be quite fast and Firefox nearly as fast as those. The IE issue stems from the code that moves the items from the

[jQuery] Re: listmenu

2009-08-11 Thread Jack Killpatrick
. On Aug 10, 3:01 pm, Jack Killpatrick wrote: Hi Paul, Thanks for this info, I'll add it to my test cases and thanks for letting the community know. I was actually working on a new version of the plugin yesterday, which adds one new feature: an onClick option that you can pass a functi

[jQuery] ANNOUNCE: new revs of listnav and listmenu plugins

2009-08-11 Thread Jack Killpatrick
Hi All, New versions of the jquery listnav and listmenu plugins are now available: http://www.ihwy.com/labs/jquery-listnav-plugin.aspx http://www.ihwy.com/labs/jquery-listmenu-plugin.aspx What's new: -- ListNav plugin - 1. added an includeOther option to provide a top lev

[jQuery] Re: listmenu

2009-08-10 Thread Jack Killpatrick
Paul, I found and fixed that issue, thanks for bringing it to my attention. It also inspired me to add another option that's been on my backburner for a while ;-) I've added an includeOther: true/false option that, if true, will cause a [...] menu item to appear at the end of the nav bar, w

[jQuery] Re: listmenu

2009-08-10 Thread Jack Killpatrick
Hi Paul, Thanks for this info, I'll add it to my test cases and thanks for letting the community know. I was actually working on a new version of the plugin yesterday, which adds one new feature: an onClick option that you can pass a function to for handling clicks in the dropdown menu. If

[jQuery] Re: Best cookie plug-in?

2009-08-09 Thread Jack Killpatrick
I've used this with success: http://plugins.jquery.com/project/cookie - Jack ldexterldesign wrote: Easy guys, Just getting started with cookies this afternoon and wondering what plug-in everyone is using these days? Thanks, L

[jQuery] Re: How to maintain data "Yes" or "No" in output...

2009-08-07 Thread Jack Killpatrick
: 'No') + '... Works great! Rick *From:* jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] *On Behalf Of *Jack Killpatrick *Sent:* Friday, August 07, 2009 2:55 PM *To:* jquery-en@googlegroups.com *Subject:* [jQuery] Re: How to maintain data "Yes" or

[jQuery] Re: How to maintain data "Yes" or "No" in output...

2009-08-07 Thread Jack Killpatrick
l have to work something up server-side. Maybe it's the json formatting that's doing it. I have set ColdFusion to return the data to the calling page in json. Rick *From:* jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] *On Behalf Of *Jack Killpatrick *Sent:* Fr

[jQuery] Re: How to maintain data "Yes" or "No" in output...

2009-08-07 Thread Jack Killpatrick
If the values are truly the words Yes and No in the db, then it's probably the library you're using on the server side to prepare the data for returning for the ajax call. Check the output of that. If that's still showing the words, it seems odd that they would transform again on their way to t

[jQuery] Re: Listnav initial display of no items?

2009-08-04 Thread Jack Killpatrick
Ah, I see. Since you have includeAll: false, it required a different workaround, since that forces the first available letter's contents to show. I grabbed a copy of your test and verified that this works: $(function(){ var clicks = 0; $('#alphalist').listnav({ includeAll: fals

[jQuery] Re: Listnav initial display of no items?

2009-08-03 Thread Jack Killpatrick
Do you have your attempt somewhere I can take a look at? - Jack rubycat wrote: Still at a deadend on this one...any suggestions to get this working?

[jQuery] Re: jqGrid 35.5 released

2009-08-03 Thread Jack Killpatrick
Really nice work, Tony! Looks like some very useful new features in this rev. - Jack Tony wrote: Happy to announce the final 3.5 release of jqGrid. New wiki Documentation at http://www.trirand.com/jqgridwiki The demo at http://www.trirand.com/jqgrid/jqgrid.html and final the home : http://ww

[jQuery] Re: Listnav Umlauts and special chars

2009-07-26 Thread Jack Killpatrick
Good idea making "All" a variable. You're the 2nd person in the last few days who had a need for that. And thanks for your thoughts on the special chars. As I mentioned in my other email a few minutes ago, I'll be adding support for that, I just need to think it through a bit more. It seems

[jQuery] Re: Listnav Umlauts and special chars

2009-07-26 Thread Jack Killpatrick
Hi, you can set the "not found" wording using the noMatchText option. I'm planning on adding handling for special chars in the near future, I've got feedback from a few people on that, just need to think it out a little bit more. Glad you like the plugin. If you have it used in a public plac

[jQuery] Re: Listnav initial display of no items?

2009-07-24 Thread Jack Killpatrick
Like this: #alphalist { display:none; } $(function(){ var clicks = 0; $('#alphalist').listnav({ includeAll: false, cookieName: 'xalpha_list', onClick: function(){ clicks++; if(clicks == 2){ $('#alphalist').show();

[jQuery] Re: listnav letter question?

2009-07-24 Thread Jack Killpatrick
Hi Keith, Glad you like the plugin. I missed your original post, but just spotted this one. Your change looks good, that's where I would have done it, too. I'm having a little trouble picturing your use case, though. Do you have an example anywhere or could you explain it a little bit more? I

[jQuery] Re: Listnav initial display of no items?

2009-07-23 Thread Jack Killpatrick
27;#yourUL').show(); } } (not tested .. let me know if you hit a deadend) - Jack Jack Killpatrick wrote: Hi, I'm assuming the little treasure is the plugin? ;-) Thanks, glad you like it. There's nothing built into the plugin that will hide the full list (it's wir

[jQuery] Re: [Plugins] looking for "iPhone contacts shortcut"

2009-07-23 Thread Jack Killpatrick
this was posted to the list not long ago: http://scott.sauyet.com/Javascript/Demo/2009-06-06a/ perhaps of interest. - Jack macsig wrote: Hello guys, I have a long list or product names and in order to speed up the research I'd like to have the alphabet letters on one side and when the user p

[jQuery] Re: Listnav initial display of no items?

2009-07-23 Thread Jack Killpatrick
Hi, I'm assuming the little treasure is the plugin? ;-) Thanks, glad you like it. There's nothing built into the plugin that will hide the full list (it's wired to show the first available letter unless you specify a letter to show), but here's a workaround that might do the trick for you:

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

2009-07-23 Thread Jack Killpatrick
yes (only use one of the listnav js files). That and rename this: to this: - Jack keith westberg wrote: 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:

[jQuery] Re: listmenu plugin: non-ascii characters

2009-07-08 Thread Jack Killpatrick
roach. Thanks, Jack Dave wrote: Have there been any progress in this matter? On Jun 8, 11:09 pm, Jack Killpatrick wrote: Hi, I considered building something like that in, but decided I didn't know enough about other languages to decide how best to handle them. Thanks for starting the di

[jQuery] Re: listmenu

2009-06-24 Thread Jack Killpatrick
Hi, I missed your question first time around. Are you still in need of help on this? - Jack robin30 wrote: hi all, i love the listmenu plugin. just have a question. i'm getting a list from my database. for example under "C" there's "Coffee" and "Cafe". how can i when i click for example o

[jQuery] Re: Animating background color

2009-06-17 Thread Jack Killpatrick
You can use this to animate that: http://plugins.jquery.com/project/color - Jack Apothem wrote: I use jQuery 1.3.2 and tried to use: $('.applied').each(function(){ $(this).css('background-color', '#ff').animate ({backgroundColor: "#000" }, "slow");

[jQuery] Re: vertically scroll text

2009-06-14 Thread Jack Killpatrick
If you just want a vertical scrollbar to appear, try css overflow:auto on the div. - Jack -Dman100- wrote: Is there a jquery plugin that can scroll text in a div vertically? I have div with a set height that is filled with more content than can be seen. I'm looking for a way to vertically

[jQuery] tables and chairs app

2009-06-12 Thread Jack Killpatrick
Hi All, I'm thinking out how to put together a web app that allows a user to have a "room" and in that room, place tables and chairs, which will then be used for a scheduling app. The scheduling part I'm on top of. The graphical part for positioning tables and chairs is what I'm looking for

[jQuery] Re: AIR plugin for jQuery?

2009-06-12 Thread Jack Killpatrick
ward and don't require a lot of options. Then we could move into SQLite, File System access, etc. Thoughts? *From:* jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] *On Behalf Of *Jack Killpa

[jQuery] Re: AIR plugin for jQuery?

2009-06-12 Thread Jack Killpatrick
{ app.icon.bitmaps = new runtime.Array (event.target.content.bitmapData); } } Anyway...I might start writing one, but would love to get input from others who would be interested in helping out. On Jun 12, 11:52 am, Jack Killpatrick wrote: This may be of interest, tho

[jQuery] Re: AIR plugin for jQuery?

2009-06-12 Thread Jack Killpatrick
This may be of interest, though it's not jQuery encapsulation, it does provide an abstraction layer: http://www.activerecordjs.org/index.html I've been using the ActiveRecord js implementation in AIR for a while now and it's proven to be solid so far: http://www.activerecordjs.org/record.h

[jQuery] Re: Sortable Gallery?

2009-06-10 Thread Jack Killpatrick
Maybe this is the tutorial: http://nettuts.com/tutorials/javascript-ajax/creating-a-filterable-portfolio-with-jquery/ - Jack James wrote: Hey all, I am new to jquery. Managed so far to get a carousel up and going, some tabbed interfaces etc. Nothing spectacular. A week or so ago, I found

[jQuery] Re: listmenu plugin: non-ascii characters

2009-06-08 Thread Jack Killpatrick
Hi, I considered building something like that in, but decided I didn't know enough about other languages to decide how best to handle them. Thanks for starting the dialog. Does anyone else have any opinion on this? The main thing I'm wondering is whether collecting them all under one nav it

[jQuery] Re: Window Explorer like tree

2009-06-08 Thread Jack Killpatrick
any other plugin like windows explorer. Thanks On Jun 8, 10:45 pm, Jack Killpatrick wrote: Maybe this:http://abeautifulsite.net/notebook.php?article=58 - Jack Vivek wrote: Hi, Is there any plugin with the help of which we can have windows explorer like tree struture with Jque

[jQuery] Re: listmenu plugin: UL being shown unformated before listmenu() call

2009-06-08 Thread Jack Killpatrick
Hi Dave, The first thing that the listmenu plugin does is this: $list.css('visibility', 'hidden'); // hiding to prevent pre-load flicker. Using visibility:hidden so that list item dimensions remain available which I *think* should have prevented what you're describing. If not, is there an

[jQuery] Re: Window Explorer like tree

2009-06-08 Thread Jack Killpatrick
Maybe this: http://abeautifulsite.net/notebook.php?article=58 - Jack Vivek wrote: Hi, Is there any plugin with the help of which we can have windows explorer like tree struture with Jquery ? There will be a tree pattern of folders and files on the left side and whenever an user clicks on an f

[jQuery] Re: grid layout plugin?

2009-06-07 Thread Jack Killpatrick
it's not a plugin, but maybe this: http://960.gs/ - Jack bobh wrote: Hi, I've been on the lookout for a jquery plugin that fits divs together into a nicely fitting layout. For example: http://spacecollective.org/gallery/ more: http://www.corneer.se/nolegacy/?p=528 Does it exist?

[jQuery] Re: Help on jQuery plugin

2009-06-04 Thread Jack Killpatrick
I'm not sure I completely understand what you're looking for, but it sounds like you're in need of using event delegation so that something can be added and will get handled by a click handler that was defined before it was added. Here's a good article: http://www.learningjquery.com/2008/03/wo

[jQuery] Re: Thoughts on creating a hoverable alphabetical list

2009-06-03 Thread Jack Killpatrick
Neat idea. I think you could use this and give each LI a letter class ( class="d" ), then use it to scroll to that LI: http://demos.flesler.com/jquery/scrollTo/ - Jack Dave Joyce wrote: I'm trying to figure out a good way to approach this. Basically here's a shot of what's needed. http://s

[jQuery] Re: Looking for a plugin similiar to this scriptaculous effect...

2009-06-03 Thread Jack Killpatrick
Check into these: http://flesler.blogspot.com/2007/10/jqueryscrollto.html http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html http://flesler.blogspot.com/2008/02/jqueryserialscroll.html - Jack williampdx wrote: Hello everyone. I am searching for a plugin that could potentially pe

[jQuery] Re: scrollTo plugin: prevent tabbing between slides?

2009-06-03 Thread Jack Killpatrick
isabling the fields until they come into view? On Jun 2, 4:16 pm, Jack Killpatrick wrote: Anyone have any ideas? TIA. - Jack Jack Killpatrick wrote: Hi, Does anyone know of a way to prevent tabbing (via keyboard tab key) between form fields in different "slides" whe

[jQuery] Re: scrollTo plugin: prevent tabbing between slides?

2009-06-02 Thread Jack Killpatrick
Anyone have any ideas? TIA. - Jack Jack Killpatrick wrote: Hi, Does anyone know of a way to prevent tabbing (via keyboard tab key) between form fields in different "slides" when using the jquery scrollTo plugin? For example, I have a UL with 2 LI's in it and each LI has

[jQuery] Re: Ann: jqPlot 0.6.2 released

2009-06-02 Thread Jack Killpatrick
This is really great work, thanks for sharing! Good stuff! - Jack Chris Leonello wrote: jqPlot is an open source plotting plugin for jQuery. The 0.6.2 release adds many new features including: Rotated axis text. Vertical and horizontal bar charts. Automatic trend line computation. Data point

[jQuery] scrollTo plugin: prevent tabbing between slides?

2009-06-01 Thread Jack Killpatrick
Hi, Does anyone know of a way to prevent tabbing (via keyboard tab key) between form fields in different "slides" when using the jquery scrollTo plugin? For example, I have a UL with 2 LI's in it and each LI has a inside of it. If a user is on slide 1 and hits tab on the last visible form f

[jQuery] Re: question re: .live() and .empty()

2009-05-30 Thread Jack Killpatrick
ing one of those components on a dynamically created DOM node that I can then get rid of using .empty() on it's parent and no event handlers will be left behind, but am not sure. Thanks, Jack Karl Swedberg wrote: On May 30, 2009, at 12:14 PM, Jack Killpatrick wrote: Thanks, Brandon. So

[jQuery] Re: question re: .live() and .empty()

2009-05-30 Thread Jack Killpatrick
009 at 10:06 PM, Jack Killpatrick wrote: I'm guessing that once a .live() instantiation occurs it's there for good. If that's the case, is there a way to destroy it? (in particular as it pertains to a selector). I'm debating using it in a plugin, but am wary because of what coul

[jQuery] Re: question re: .live() and .empty()

2009-05-29 Thread Jack Killpatrick
es of the plugin and maybe no ability to destroy it completely. Thanks, Jack Jack Killpatrick wrote: Hi All, Wondering if someone knows the answer to this: Using jQuery 1.3.2, if some items inside a div have events bound to them via .live() and then .empty() is called on the div will the ev

[jQuery] question re: .live() and .empty()

2009-05-29 Thread Jack Killpatrick
Hi All, Wondering if someone knows the answer to this: Using jQuery 1.3.2, if some items inside a div have events bound to them via .live() and then .empty() is called on the div will the events that were bound via .live() get removed? The .empty() doc says: http://docs.jquery.com/Manipulat

[jQuery] just a shout out

2009-05-28 Thread Jack Killpatrick
I've been majorly head's-down in a jQuery-driven AIR app for the last few weeks. I've been using jQuery almost daily since very early on (2+ yrs?). It works great for my web apps and great for this AIR app, which is _very_ heavy js/jQuery. Great work! Thanks, kudos, etc to the jQuery and jQu

[jQuery] Re: EasySlider 1.5: Tabbing through forms

2009-05-20 Thread Jack Killpatrick
I suspect you might have to have the focus() event on each field (or a delegate for it) do something to figure out what slide the focused field is in and have a function to move to that slide (or fire the click handler for "Next"). I don't remember seeing any slider plugins that will do that na

[jQuery] Re: JQuery Slide Panel

2009-05-19 Thread Jack Killpatrick
I had a problem (not sliding panel specific) once where a google map would not display if it's wrapper had display:none on it. Maybe try visibility:hidden. I think in my case I had to load the map offscreen (using absolute a div with negative positioning) and then using .append to move it's c

[jQuery] Re: PLease help.. sliding menu?

2009-05-12 Thread Jack Killpatrick
maybe this one: http://github.com/nathansearles/loopedSlider/tree/master - Jack casey_oakland wrote: Hey all.. by chance / looking for a good sliding menu tutorial. I did find a great one! > http://www.flowplayer.org/tools/scrollable.html however.. it's just shy of what i need it to do. May

[jQuery] Re: [autocomplete] triggering a function when an item is selected

2009-05-10 Thread Jack Killpatrick
I think this might be what you're looking for: http://docs.jquery.com/Plugins/Autocomplete/result#handler - Jack jitz wrote: Hi, Is it possible to trigger a function that fires when an item is selected from the autocomplete box? Thanks a lot in advance, David

[jQuery] Re: UI component libraries?

2009-05-10 Thread Jack Killpatrick
these are a couple I know of, but can't vouch for them (haven't used them): http://mochaui.com/ (moo) http://qooxdoo.org/ - Jack zweb wrote: Are there any good web UI component libraries -open source or commercial - that you can recomment? They need to be cross browser compatible and have go

[jQuery] Re: barackslideshow effect in jquery.

2009-05-06 Thread Jack Killpatrick
. Actually i have some links and corresponding to links are images. i want to fade in the images on mouse hover over the links. also it should changes automatically when no actions taking place. thanks On Wed, May 6, 2009 at 9:37 PM, Jack Killpatrick <mailto:j...@ihwy.com>> wrote: m

[jQuery] what happened to galleriffic?

2009-05-06 Thread Jack Killpatrick
Hi, Does anyone know if the galleriffic plugic is available somewhere new? I started a project with it last week, pulled from here: http://www.twospy.com/galleriffic/ but when I went there yesterday it wasn't working and isn't today, either. Thanks, Jack

[jQuery] Re: barackslideshow effect in jquery.

2009-05-06 Thread Jack Killpatrick
maybe this: http://devthought.com/blog/projects-news/2008/06/barackslideshow-an-elegant-lightweight-slideshow-script/ - Jack idrish laxmidhar wrote: hi all..i am looking for a similar effect like the barackslideshow effect. can anyone suggest such a plugin in jquery. thanks a lot

[jQuery] Re: Why JQuery Autocomplete displays only one item?

2009-05-03 Thread Jack Killpatrick
I think you need to return data with line breaks after it: one two three internally the autocomplete plugin splits on the pipe. See this: http://grover.open2space.com/node/190 and this: http://docs.jquery.com/Plugins/Autocomplete/autocomplete#url_or_dataoptions "The result must return with

[jQuery] Re: state of the art for corner rounding?

2009-05-02 Thread Jack Killpatrick
bump. Anyone eval'd the corner plugins recently enough to have an opinion? Thx. Jack Jack Killpatrick wrote: Hi All, I have a half dozen bookmarks for rounded corner plugins, but am wondering if there's a "state of the art" plugin kicking any booty on that these da

[jQuery] Re: listnav, but for tables?

2009-05-02 Thread Jack Killpatrick
Hi, I wrote the listnav plugin. Can you elaborate a little more on how you'd want it to work? There might be a selector we can tweak to make it do what you want (like use tr instead of li). - Jack Tor wrote: I'm looking for a plugin like the listnav plugin (demo: http://www.ihwy.com/Labs/De

[jQuery] state of the art for corner rounding?

2009-05-01 Thread Jack Killpatrick
Hi All, I have a half dozen bookmarks for rounded corner plugins, but am wondering if there's a "state of the art" plugin kicking any booty on that these days? What I'd *really* like is to just be able to set -moz border radiuses in CSS and have a plugin magically use those to create rounded

[jQuery] flexbox question

2009-04-30 Thread Jack Killpatrick
I'm evaluating Flexbox for a project: http://www.fairwaytech.com/Technology/FlexBoxDemo.aspx In example #1 there I can type in some chars and items with those chars *inside* a result get highlighted (though only the first instance of the found chars in any given item gets highlighted). In a

[jQuery] Re: TextboxList for jQuery

2009-04-27 Thread Jack Killpatrick
Looks very nice, Guillermo! I like the arrow, backspace and delete keyboard handling, too. Are there any known issues? Thanks, Jack Guillermo Rauch wrote: I've released my TextboxList widget picture-1.png for jQuery: http://devthought.com/projects/jquery/textboxlist/ Let me know what you th

[jQuery] detect quicktime?

2009-04-26 Thread Jack Killpatrick
Hi All, I'm looking for a jquery plugin (or vanilla method) for detecting quicktime, so I can decide whether to embed a QT movie or not. Did some googling, but most of the methods seems really old and I didn't see any jQuery plugins dedicated to detection. Any links/advice? Thanks! - Jack

[jQuery] Re: Tablesorter with pager extension check boxes not present on form submit

2009-04-24 Thread Jack Killpatrick
Checkbox names are only posted if they're checked. You'll need to check for the presence of the name on the server side and if it's not there, then none were checked. That's not a tablesorter issue (doesn't sound like it). - Jack Justin wrote: Hello everyone, This is my first post to the

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Jack Killpatrick
<mailto:adambu...@gmail.com>> wrote: Check out Galleria- super slick image gallery plugin: http://devkick.com/lab/galleria/ Im actually doing a JQ-rich real estate site right now using Galleria- Ill post a link soon. On Apr 23, 2:15 pm, Jack Killpatrick

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Jack Killpatrick
tos, I'd prefer that the container remain the same size for speed and for consistency in the space for comments. It's less attractive than having the full window taken up by the image, but the constant shifting of the window size is distracting to me. Rick On Thu, Apr 23, 2009 at 1

[jQuery] flowplayer: how to loop a single movie?

2009-04-23 Thread Jack Killpatrick
Does anyone know how to loop the playback of a single movie using Flowplayer? ( http://flowplayer.org/ ) I want it to autostart (got that part), play, then repeat endlessly. TIA, Jack

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Jack Killpatrick
- Jack Rick Faircloth wrote: Yes! That should be perfect...thumbnails, main photo, captions, slideshow, and manual navigation! Thanks! Rick On Thu, Apr 23, 2009 at 11:28 AM, Jack Killpatrick <mailto:j...@ihwy.com>> wrote: Maybe this one? http://spaceforaname.com/gall

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Jack Killpatrick
Maybe this one? http://spaceforaname.com/gallery-customized.html main page: http://spaceforaname.com/galleryview - Jack Rick Faircloth wrote: I certainly hope you find this because it is *exactly* what a client of mine is looking for and I was hoping to avoid having to code this up from scr

[jQuery] Re: rss from plugins.jquery.com?

2009-04-21 Thread Jack Killpatrick
Great, thanks, and ditto what Matt asked about more item in the feed. Thanks! - Jack Matt Kruse wrote: On Apr 21, 4:09 pm, Karl Swedberg wrote: Here you go: http://plugins.jquery.com/latest_releases/feed Cool, is this new, or did I just not find it when I looked? I'd like to see m

[jQuery] rss from plugins.jquery.com?

2009-04-21 Thread Jack Killpatrick
Anyone know if there's an rss feed for new/changed plugins from plugins.jquery.com? I poked around a bit, but couldn't find one. Thx, Jack

  1   2   3   4   >