[jQuery] Re: Creating custom attributes in html

2009-04-15 Thread Jack Killpatrick
Nice summary, thanks. Here's some more potential food for thought: http://ejohn.org/blog/html-5-data-attributes/ http://www.1729.com/blog/HtmlAnnotations.html FWIW, in general I've steered away from using custom attributes and have generally used id=name_123 (often), class with data inside

[jQuery] Re: Slideshow with Carousel and spotlight?

2009-04-14 Thread Jack Killpatrick
Hmm, I have a pretty big collection of plugin bookmarks, but looked through them and couldn't find something that seemed quite right, either. Found this, which seems like a near-hit: http://www.monc.se/galleria/demo/demo_01.htm#img/lightning.jpg and this, but it hooks to Flickr:

[jQuery] Re: Finding ID within Ajax response

2009-04-13 Thread Jack Killpatrick
Maybe try: success: function(html){ alert($(html).find('form').attr('action')); I had some issues in the past using form id's with the jquery form plugin, but usually getting it using 'form' worked. That said, since the response isn't in the DOM yet, I'm not sure if that might present an

[jQuery] Re: Something like this

2009-04-08 Thread Jack Killpatrick
this might do it for you: http://buildinternet.com/2009/02/supersized-full-screen-backgroundslideshow-jquery-plugin/ - Jack my.analyt...@gmx.de wrote: Hey Folk, I saw thes two nice sites and want to try out, how this will work. http://www.imagesource.com/ http://www.realities-united.de/

[jQuery] Re: listnav plugin

2009-04-07 Thread Jack Killpatrick
where is this supposed to be and is this correct? again the link... http://www.klcreativedesign.com/suasion/glossary Thanks for your help, i really thought it was something simple here.. Kristy lee On Apr 2, 4:02 pm, Jack Killpatrick j...@ihwy.com wrote: The other day if I looked

[jQuery] Re: HOWTO - hover card effect

2009-04-07 Thread Jack Killpatrick
Interesting effect. The main effect is done by toggling the z-index of the block (from 10 to 11 to show and back to 10 to hide) and changing overflow from hidden to visible. Adding/removing the .visible class handles that: .blockz-films .visible { overflow:visible; z-index:11; }

[jQuery] Re: listnav

2009-04-06 Thread Jack Killpatrick
A form is not necessary: it renders straight html with css styling. It's a purely client-side thing: as long as you follow the implementation model for your HTML, it should work. I can take a look at the page if you can post a url for it. It looks like your setup below is correct. - Jack

[jQuery] Re: Create array from li text

2009-04-06 Thread Jack Killpatrick
maybe something like this: var ar = []; $('#yourList li').each(function(){ ar.push( $(this).text() ); }); - Jack Nic Hubbard wrote: A better explanation: I have a var that contains some html. Within that there are li elements that I need to strip the text out of and put that into an

[jQuery] Re: Create array from li text

2009-04-06 Thread Jack Killpatrick
the inner text, sry. - Jack Jack Killpatrick wrote: maybe something like this: var ar = []; $('#yourList li').each(function(){ ar.push( $(this).text() ); }); - Jack Nic Hubbard wrote: A better explanation: I have a var that contains some html. Within that there are li elements that I need

[jQuery] Re: Plugin search

2009-04-03 Thread Jack Killpatrick
this might work: http://layout.jquery-dev.net/demos.html - Jack ripple...@yahoo.com wrote: I have been searching for a jquery plugin that has a similar feature to ext.js and the Border Layout that can scale and or collapse a div on click or drag, while scaling the right larger div, see it

[jQuery] Re: Selectively load js files

2009-04-03 Thread Jack Killpatrick
cool little chunk of code, thanks for sharing. I did something like this for sets of trimpath templates (js/html templates), never thought to do it for scripts. Nice. - Jack Eric Garside wrote: If you get the developer build, each of the files is separated out into a: ui.core.js,

[jQuery] Re: A Tree which can be filtered or searched....

2009-04-02 Thread Jack Killpatrick
If the tree is just a list internally, you might be able to use this: http://rikrikrik.com/jquery/quicksearch/ or maybe use that with this: http://blog.cubicphuse.nl/2008/11/12/jquery-treetable-2-0 - Jack Ravish wrote: Hi, I've been looking for a tree widget which can be filtered or

[jQuery] Re: Need a jQuery 'equal height columns' script

2009-04-02 Thread Jack Killpatrick
http://www.cssnewbie.com/equalheights-jquery-plugin/ http://www.tomdeater.com/jquery/equalize_columns/ - Jack sammahoney wrote: Hi All I have an old script for equalizing columns. Can't remember where I got it, but I need something similar in jQuery - I've found a few so far, but they all

[jQuery] Re: listnav plugin

2009-04-02 Thread Jack Killpatrick
it through the validator and no errors that would cause that. I feel like I am missing something simple. anyone have any suggestions? On Mar 26, 2:28 pm, Jack Killpatrick j...@ihwy.com wrote: Something is causing your glossary-nav span to be hidden in the HTML (and also not found

[jQuery] Re: Need a jQuery 'equal height columns' script

2009-04-02 Thread Jack Killpatrick
is on the same row, as opposed to being given all the same height. I guess it's like an inverted version of the scripts you listed! On Apr 2, 6:00 pm, Jack Killpatrick j...@ihwy.com wrote: http://www.cssnewbie.com/equalheights-jquery-plugin/ http://www.tomdeater.com/jquery/equalize_columns/ - Jack

[jQuery] Re: A Tree which can be filtered or searched....

2009-04-02 Thread Jack Killpatrick
of node by getting hold of the element. Sounds a bit tricky though :( Ravish On Thu, Apr 2, 2009 at 4:56 PM, Jack Killpatrick j...@ihwy.com mailto:j...@ihwy.com wrote: If the tree is just a list internally, you might be able to use this: http://rikrikrik.com/jquery/quicksearch

[jQuery] Re: A Tree which can be filtered or searched....

2009-04-02 Thread Jack Killpatrick
as useful. Ravish On Thu, Apr 2, 2009 at 9:49 PM, Jack Killpatrick j...@ihwy.com mailto:j...@ihwy.com wrote: The treetable plugin (below) is collapsible. You may hit a snag trying to find something that will open up the found node, though. I'm pretty sure that the quicksearch plugin

[jQuery] Re: can someone take a look please...

2009-03-31 Thread Jack Killpatrick
When I use firebug to see what's in the HTML I only see: input type=text value= name=partnum/ - Jack webguy262 wrote: Jack I think I've got that, don't I? From my post... input type=text name=partnum id=partnum readonly Am I missing something? Jack Killpatrick wrote: try

[jQuery] Re: can someone take a look please...

2009-03-30 Thread Jack Killpatrick
try adding id=partnum to the form field that has name=partnum. - Jack webguy262 wrote: webguy262 wrote: I have two forms on a page (www.eastexhaust.com/inventory.php). One uses ajax to generate a part number by selecting values from a series of selection boxes. The other form emails

[jQuery] Re: Plugin to display large image of thumbnail on hover

2009-03-27 Thread Jack Killpatrick
this isn't quite the same, but FYI: http://james.padolsey.com/demos/imgPreview/full/ there's also this: http://www.mind-projects.it/projects/jqzoom/demos.php#demo1 - Jack banacan wrote: As the subject says, I'm looking for a plugin that will display a larger image of the thumbnail when

[jQuery] OT: AIR sync?

2009-03-27 Thread Jack Killpatrick
Sorry for the slightly off topic post, but I know there are some AIR devs on this list and someone might have a tip for me. I'm planning an Adobe AIR app that will be written with HTML/jQuery and needs to do offline sync (using SQLite db on AIR side, mysql on server side and json web

[jQuery] Re: OT: AIR sync?

2009-03-27 Thread Jack Killpatrick
(my personal choice), but have you considered Flex in conjunction with LiveCycle Data Services? LCDS makes syncing and managing conflicts SUPER simple. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jack Killpatrick Sent: Friday

[jQuery] Re: OT: AIR sync?

2009-03-27 Thread Jack Killpatrick
[mailto:jquery...@googlegroups.com] On Behalf Of Jack Killpatrick Sent: Friday, March 27, 2009 2:38 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: OT: AIR sync? We've looked at LCDS, but aren't too keen on using Flex for the UI. Maybe there's some minimal way we could use it just for the sync

[jQuery] Re: OT: AIR sync?

2009-03-27 Thread Jack Killpatrick
transparency off and it worked just fine. andy *From:* jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] *On Behalf Of *Jack Killpatrick *Sent:* Friday, March 27, 2009 3:13 PM *To:* jquery-en@googlegroups.com

[jQuery] Re: listnav plugin

2009-03-26 Thread Jack Killpatrick
Something is causing your glossary-nav span to be hidden in the HTML (and also not found by the listnav plugin). Try running the HTML through a validator. I tried seeing what was causing the span to be hidden, using Firebug, but didn't immediately see the cause. - Jack kristy...@gmail.com

[jQuery] Tutorial for serialScroll?

2009-03-20 Thread Jack Killpatrick
Hi All, I did a nifty implementation using jquery serialScroll to scroll images inside an iphone image (to display screenshots: site isn't publicly available yet). I had to reverse-engineer my way through the demos and other people's implementations to figure out how to make it work. Main

[jQuery] Re: jquery.dates

2009-03-19 Thread Jack Killpatrick
IIRC I had a similar issue with datePicker in IE and doing something like this resolved it: $(document).ready(function(){ setTimeout(function(){ $('#sample1').datePicker(); }, 50); }); worth a quick try, at least. I've also had to use a setTimeout like that for IE when there was

[jQuery] Re: Develop Ajax apps 100% faster - thanks to jQuery Raxan PDI

2009-03-18 Thread Jack Killpatrick
Looks very interesting! The site says it's in alpha... is that still correct? Thanks, Jack xwisdom wrote: Hello Everyone, I've created a PHP framework that integrates well with the jQuery library. The framework is called Raxan Framework which includes a Programmable Document Interface

[jQuery] Re: NEW! Star Rating Plugin v3.00

2009-03-16 Thread Jack Killpatrick
Very nice. I've used a prior rev and liked it. Great upgrades here. Thanks much! - Jack Diego wrote: NEW! jQuery Star Rating Plugin v3.00 http://www.fyneworks.com/jquery/star-rating/ New features: - Now entirely based in the $.fn.rating namespace - Now uses $.fn.data t9o store control

[jQuery] Re: Using nbsp; (or not!)

2009-03-14 Thread Jack Killpatrick
$(#msgUnits).html(nbsp;); will probably work. - Jack Swatchdog wrote: This does not work: $(#msgUnits).text(nbsp;); nor does this... $(#msgUnits).text('nbsp;'); I guess nbsp; is html only? Clues, anyone?

[jQuery] Re: jquery.quicksearch not working in 1.3.2?

2009-03-13 Thread Jack Killpatrick
not something else interfering with it? On Mar 12, 9:32 am, Jack Killpatrick j...@ihwy.com wrote: Hi, I'm in the process of upgrading a site from jQuery 1.2.6 to 1.3.2 and testing each of the plugins I'm using along the way. I've found that jquery.quicksearch (http://rikrikrik.com/jquery

[jQuery] Re: Call for contributors: A simple, fast and flexible grid/spreadsheet component.

2009-03-13 Thread Jack Killpatrick
the rerenderOnResize option on a column definition that currently triggers a complete rerender. There's a lot of things I'd like to add to it though. The first item on my list is to add a simple datasource and a Model/Controller to demonstrate how this all works together. On Mar 12, 6:43 pm, Jack

[jQuery] jquery.quicksearch not working in 1.3.2?

2009-03-12 Thread Jack Killpatrick
Hi, I'm in the process of upgrading a site from jQuery 1.2.6 to 1.3.2 and testing each of the plugins I'm using along the way. I've found that jquery.quicksearch ( http://rikrikrik.com/jquery/quicksearch/ ) fails silently (well, at least I'm not seeing a js error in Firebug). Does anyone

[jQuery] Re: Call for contributors: A simple, fast and flexible grid/spreadsheet component.

2009-03-12 Thread Jack Killpatrick
Hmm, this is really, er, slick ;-) ... I'm glad you wrote this extra info up, it caught my eye. Do you by chance have a known-issues list (outside of what would come from maybe making it a plugin or something)? Looks like a great contrib. Thanks, Jack Tin wrote: One more point. While this

[jQuery] Re: How to turn a bulleted list into a pseudo select box

2009-03-10 Thread Jack Killpatrick
Andy, can you explain what you're looking for in a different way? I've read it a few times and am not sure what you're looking for. Thx, Jack Andy Matthews wrote: No one has input on this? I know I've seen it done somewhere, I just can't remember where. On Mar 10, 11:30 am, Andy Matthews

[jQuery] Re: How to turn a bulleted list into a pseudo select box

2009-03-10 Thread Jack Killpatrick
JS, then they just get a bulleted list. andy *From:* jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] *On Behalf Of *Jack Killpatrick *Sent:* Tuesday, March 10, 2009 4:00 PM *To:* jquery-en@googlegroups.com

[jQuery] Re: [Listnav] Extra characters

2009-03-09 Thread Jack Killpatrick
Hi, The letters array does double-duty: it's used to create the nav strip and it's also used to add a class to each LI in your list, based on the first text character inside your list item. An exception is the '_', which is added to LI's that start with a number. So, for example, after

[jQuery] Re: jQuery Help Please

2009-03-06 Thread Jack Killpatrick
This may give you a little bit of a headstart: http://www.ihwy.com/Labs/demos/Current/image-hover-menu.aspx - Jack tfat wrote: Hi, Just wondering if the following is possible using jQuery – if so, would really appreciate your help: 1) I have a menu within a DIV that I would it to slide in

[jQuery] Re: ANNOUNCE: jQuery ListMenu plugin 1.0 from iHwy

2009-03-06 Thread Jack Killpatrick
*From:* jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] *On Behalf Of *Jack Killpatrick *Sent:* Monday, March 02, 2009 3:36 PM *To:* jquery-en@googlegroups.com *Subject:* [jQuery] Re: ANNOUNCE: jQuery ListMenu plugin 1.0 from iHwy Thanks, glad you like

[jQuery] Re: Show/Hide Menu

2009-03-03 Thread Jack Killpatrick
You might want to try .hover(): http://docs.jquery.com/Events/hover#overout - Jack Nic Hubbard wrote: I have a menu that is activated on mouseover a link. The menu is a hidden div which appears. My problem now is how to remove/hide that div when a user move their mouse off of the menu. I

[jQuery] Re: Show/Hide Menu

2009-03-03 Thread Jack Killpatrick
of them. On Mar 3, 12:14 am, Jack Killpatrick j...@ihwy.com wrote: You might want to try .hover():http://docs.jquery.com/Events/hover#overout - Jack Nic Hubbard wrote: I have a menu that is activated on mouseover a link. The menu is a hidden div which appears. My problem now is how

[jQuery] Re: [listnav] in Chrome

2009-03-03 Thread Jack Killpatrick
Great, glad to hear it and thanks for letting me know! - Jack simshaun wrote: Excellent. Just implemented 2.0 into my test script and its practically instant. On Feb 23, 1:20 pm, Jack Killpatrick j...@ihwy.com wrote: Hi, I have a new rev of the listnav plugin almost ready for release. Do

[jQuery] Re: Show/Hide Menu

2009-03-03 Thread Jack Killpatrick
great! but the important part: is it a nice or a bad puppy? g - Jack Nic Hubbard wrote: Yes! That is exactly what I was looking for! I have implemented it and it works perfectly, thank you! On Mar 3, 9:54 am, Jack Killpatrick j...@ihwy.com wrote: Here's an example of a way to handle

[jQuery] Re: Optimize large DOM inserts

2009-03-03 Thread Jack Killpatrick
Josh, I find this really interesting, thanks for posting this. I'm curious: have you done any looking into 'moving' DOM nodes? IE: taking an existing set of nodes and moving them to under a new parent node (or appending them under various parent nodes, depending on their class or some other

[jQuery] Re: Building Columns From A List Of Items

2009-03-03 Thread Jack Killpatrick
Nic, I've got an almost-completed listcols. If you'd like to give it a try, let me know and I'll get you a pre-release copy. It splits a list (UL, OL or any child nodes) into evenly balanced columns using the actual height of the list items. It also has options for how many cols and how wide

[jQuery] Re: Best practice for processing JSON quickly

2009-03-03 Thread Jack Killpatrick
assuming that your json items are objects, try this. The console statements are for Firebug output: comment them out if you don't have firebug. This uses a few speed tricks. script language=javascript // sample data // var items = {}; items[1] =

[jQuery] Re: Best practice for processing JSON quickly

2009-03-03 Thread Jack Killpatrick
Another thought is that you could just do a replace on 0, 1 and 2 in the string: replace each number with the div you want, then wrap that in a div. - Jack Jack Killpatrick wrote: assuming that your json items are objects, try this. The console statements are for Firebug output: comment

[jQuery] Re: How to create dom on the fly using jQuery????

2009-03-03 Thread Jack Killpatrick
This isn't jquery-specific, but I've been using this for a couple years now to generate html from json data: http://code.google.com/p/trimpath/wiki/JavaScriptTemplates works great. - Jack SeeVik wrote: Hello all, I am using Symfony with jQuery plugin. The thing is I am getting some data

[jQuery] Re: How to create dom on the fly using jQuery????

2009-03-03 Thread Jack Killpatrick
for the record, if anybody can throw some light on the original question, it would be really helpful. I don't really want to be left clueless about this thing in jQuery. Thanks and Regards Vikram On Mar 4, 12:04 pm, Jack Killpatrick j...@ihwy.com wrote: This isn't jquery-specific, but I've been using

[jQuery] ANNOUNCE: jQuery ListMenu plugin 1.0 from iHwy

2009-03-02 Thread Jack Killpatrick
Hi All, Today we released the iHwy listmenu plugin, which allows you to convert a basic 'list' of HTML elements (UL, OL or any set of child elements) into a snazzy dropdown menu with letter-based navigation (ie: A | B | C | etc). The plugin is very easy to use. In most cases all you will

[jQuery] Re: ANNOUNCE: jQuery ListMenu plugin 1.0 from iHwy

2009-03-02 Thread Jack Killpatrick
ajax to fetch the appropriate results. The complete set, though, is something over 3000 items and growing. All the same, I think I'll write a quick script to dump everything to listmenu and see what the performance is like. Nice work! On Mon, Mar 2, 2009 at 4:05 PM, Jack Killpatrick j

[jQuery] ANNOUNCE: jQuery ListNav plugin 2.0

2009-03-02 Thread Jack Killpatrick
Hi All, Today we've released a new version of the jQuery ListNav plugin that we released in late 2008. This plugin creates a letter-based navigation bar (ie: A | B | C | etc.) for any UL or OL list. Clicking a letter in the navigation bar filters the list to show only items that start with

[jQuery] Re: fastest way to move dom nodes?

2009-02-27 Thread Jack Killpatrick
the links, that will be certainly faster. - ricardo On Feb 26, 8:40 pm, Jack Killpatrick j...@ihwy.com wrote: Hi All, I have a need to move a few hundred dom nodes from one place in a page to another place. For example, to take all link tags inside a div and move them to another div, like from

[jQuery] Re: Help please with toggling a class

2009-02-27 Thread Jack Killpatrick
this might help get you down the right path: http://docs.jquery.com/Events/toggle#fnfn2fn3.2Cfn4.2C... - Jack zac wrote: Hi.. I am trying to have it so my navigation toggle hidden boxes on the site. I want it so the link toggles the box on and off, as well as having the link itself have a

[jQuery] Re: listnav related - DL

2009-02-26 Thread Jack Killpatrick
I think I have a way to make this work. Will mess with it some time in the next few days and let you know. I'm prepping the new release (for probably early next week). Thanks, Jack MauiMan2 wrote: So, the presence of the DD is what makes it difficult?

[jQuery] fastest way to move dom nodes?

2009-02-26 Thread Jack Killpatrick
Hi All, I have a need to move a few hundred dom nodes from one place in a page to another place. For example, to take all link tags inside a div and move them to another div, like from divA to divB below: div id=divA a href=#Link/a a href=#Link/a a href=#Link/a a href=#Link/a

[jQuery] Re: tab overflow

2009-02-26 Thread Jack Killpatrick
perhaps of interest: http://beta.ksscholl.com/jquery/tabnavigation.html - Jack Paul Georges wrote: hey guys and gals, any ideas on how the tabs code can be modified to add an arrow at each extremity to make the tabs scroll. this way, tabs can remain on one row instead of several. any

[jQuery] Re: jquery.listnav

2009-02-24 Thread Jack Killpatrick
Hi Sam, Sorry about taking a while to get back to you about this: for some reason this message didn't show up in my inbox til today. Very strange (this one and another one). I have a new rev of listnav almost ready and am expecting to release it this week. Would you like to try the beta

[jQuery] Re: listnav related - DL

2009-02-24 Thread Jack Killpatrick
I started working on a version that will work on any child elements. For example: div id=myList-nav div id=myList pA item/p divB item pSome stuff under the B item/p /div a href=#C item/a /div That would result in nav items for A, B and C, but would not handle a dl case, because

[jQuery] Re: [ListNav] Solution to a severe performance problems with jQuery/ListNav and the Blueprint CSS framework

2009-02-23 Thread Jack Killpatrick
Bob, I have a new rev of listnav (hoping to release this week). Do you want to try this rev and see what happens? If so, let me know and I'll get it to you. Thanks, Jack

[jQuery] Re: [listnav] in Chrome

2009-02-23 Thread Jack Killpatrick
Hi, I have a new rev of the listnav plugin almost ready for release. Do you want to give it a try and let me know if the issue has been resolved? If so, let me know and I'll get a copy to you. Thanks, Jack simshaun wrote: Using jQuery 1.3.1, This question refers to the ListNav plugin

[jQuery] Re: jquery.listnav

2009-02-18 Thread Jack Killpatrick
Are you finding this is the case in 'all' browsers? (ie 6/7, FF 3.x win/mac, safari mac) or just some? This won't help resolve the speed issue, but might take a little impact (eliminate freeze) off of it...you could try: setTimeout(function(){ // put your listnav load call in here },50);

[jQuery] Re: listnav related - DL

2009-02-16 Thread Jack Killpatrick
Hi, Yes, the plugin is geared towards UL and OL lists and relies on a LI selector to work. You have that correct. Can you give me an example of what you'd like to do with a definition list (HTML sample and description of what you'd want the end result to be like)? Thanks, Jack MauiMan2

[jQuery] Re: [listnav] in Chrome

2009-02-07 Thread Jack Killpatrick
Hmm, I'm stumped on this one (I created the plugin). This is the line in the listnav plugin that causes Safari to bog down: $('a', $letters).click(function(){ If I put a console entry right after that: window.console.log(letter clicked); I can see that the delay is the click handler.

[jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with Columns)

2009-02-07 Thread Jack Killpatrick
Rick, this might do the trick for you: jQuery file tree http://abeautifulsite.net/notebook/58 - Jack Rick Faircloth wrote: Hi, Nicolas...looking good in IE7 now. Question: Does jQuery Finder read directories and display the contents dynamically? I'm looking for something that will do

[jQuery] Re: How to trigger jQuery action from a php else branch?

2009-01-04 Thread Jack Killpatrick
If you're just returning an html snippet, you could include some js. Echo something like this back: script type=text/javascript $('#yourFieldID').show(); // any js you want to fire /script - Jack Magnificent wrote: I have a login system that has a slideup/slidedown show/hide function

[jQuery] Re: [ListNav] Solution to a severe performance problems with jQuery/ListNav and the Blueprint CSS framework

2008-12-31 Thread Jack Killpatrick
Hi Bob, I created the listnav plugin. Thanks for the nice comments about it in your post, glad you like it. I'm curious about the issue you're seeing when using Blueprint CSS. In your post you said that the issue goes away if you remove the blueprint screen.css file. You mean if you remove

[jQuery] Re: file browser jQuery plugin?

2008-12-27 Thread Jack Killpatrick
This might do it for you: http://abeautifulsite.net/notebook.php?article=58 - Jack Girish Venkatachalam wrote: Hello friends, Is it possible to create a directory view with jQuery and Ajax? I find a few plugins in repository but they use PHP and I cannot get them to work. I want a Perl or

[jQuery] Re: jQuery tips and tricks article

2008-12-17 Thread Jack Killpatrick
Real nice, Jon. Some good stuff in there. Thanks for sharing the link and posting it. I saw a bunch of retweets of it on Twitter, too, cool. Nice to spread the goodness around. - Jack jonhobbs wrote: Hi guys, I hope nobody minds me posting this on here but I've just written an article

[jQuery] jquery-based typing test?

2008-12-09 Thread Jack Killpatrick
Hi All, I'm about to put together a js-based typing test and am wondering if anyone might know of a plugin or code drop that might give me a head start? Basic process: 1. user sees an image of a block of text 2. clicks a button to start a timer 3. types into a textarea 4. textarea becomes

[jQuery] Re: listnav plugin

2008-12-03 Thread Jack Killpatrick
: My examples is about add itens on the list in run-time, xhr, delete in run-time, events onadd, ondelete. Things like that above. On Dec 2, 4:29pm, Jack Killpatrick [EMAIL PROTECTED] wrote: Alexsandro, can you give me a few examples, so I can be sure I understand what you're looking

[jQuery] Re: listnav plugin mod

2008-12-02 Thread Jack Killpatrick
Hi, Have you made any progress on this? If not, I might be able to look into it some time tonight. Offhand, if you just want a 0-9 and not a nav item for each number, I think the code will need to be modified so that the search that adds the single letter classes to each LI will add another

[jQuery] Re: listnav plugin

2008-12-02 Thread Jack Killpatrick
... On Nov 26, 7:58pm, Jack Killpatrick [EMAIL PROTECTED] wrote: Glad you like the plugin. Can you give me a little more about your use case so I'm sure I know what you're asking for? IE, are you just adding/removing LI's? - Jack idgcorp wrote

[jQuery] Re: listnav plugin

2008-12-02 Thread Jack Killpatrick
posted another question, I would love to get this new one solved its driving me nuts! http://groups.google.com/group/jquery-en/browse_thread/thread/d10260b0ed3fa4ff/6b8b83bb5d21348a#6b8b83bb5d21348a On Nov 26, 7:58pm, Jack Killpatrick [EMAIL PROTECTED] wrote: Glad you like the plugin

[jQuery] got thoughts for watching a UL?

2008-12-02 Thread Jack Killpatrick
Wondering if anyone has some ideas on how best to monitor a UL (or OL) for changes? At the most basic, I want the listener to know when any LI's get added to it (removed does not matter), but it would be even better if there was a superfast way to monitor the full contents for changes (or

[jQuery] Re: Lightbox/ThickBox/ui.dialog etc

2008-11-27 Thread Jack Killpatrick
check this one out, I think it will do all that you need: http://dev.iceburg.net/jquery/jqModal/ - Jack Lee Mc wrote: Hi there, Does anyone have an opinion on what they think is the best lightbox implementation to use? It's not going to be used to display images, it's mainly form

[jQuery] Re: listnav plugin

2008-11-26 Thread Jack Killpatrick
Glad you like the plugin. Can you give me a little more about your use case so I'm sure I know what you're asking for? IE, are you just adding/removing LI's? - Jack idgcorp wrote: I have implemented this awesome plugin with great success and would like to know if its possible to refresh

[jQuery] Re: Linked tabs that slide in and out when hovering over images

2008-11-25 Thread Jack Killpatrick
this might help: http://www.ihwy.com/labs/demos/Current/image-hover-menu.aspx - Jack yaayme wrote: Hi! I'm trying to add a menu of tabs that show and hide as you hover over a div. I think I have it working, but I also want to allow people to click on the tabs which will take them to other

[jQuery] Re: Linked tabs that slide in and out when hovering over images

2008-11-25 Thread Jack Killpatrick
Is what will appear for each image exactly the same (other than maybe an id or something)? If so, you could use jQuery's .append method to move the thing that appears around on the page. If you're fading out the thing that appears, append might not work if you don't want to wait for the fade

[jQuery] Re: asp.net and jquery - reactions to this letter

2008-11-18 Thread Jack Killpatrick
We've done a number of asp.net projects that use jQuery heavily. We do not use the MS Ajax stuff, because it's not vendor neutral. Many of our apps use C# web services and js-based widgets rendered client-side via Trimpath _javascript_ Templates, with some tie-ins to the asp.net security

[jQuery] FCKEditor plugin stopped working in Firefox 3.0.4

2008-11-17 Thread Jack Killpatrick
I found the other day that the FCKEditor plugin: http://www.fyneworks.com/jquery/FCKEditor/ doesn't work with Firefox 3.0.4. I'm looking into it now, but maybe someone already knows why? I suspect it has something to do with the way it hooks into the ajaxSubmit function of the jQuery Form

[jQuery] Re: FCKEditor plugin stopped working in Firefox 3.0.4

2008-11-17 Thread Jack Killpatrick
Hmm. In my case the FCK editor won't load. In the case of the link below the ajaxSubmit test doesn't work for me. Both work for you on that page? Thx, Jack George wrote: Works for me... I have FF 3.0.4 George.. On Nov 17, 7:41pm, Jack Killpatrick [EMAIL PROTECTED] wrote: I

[jQuery] [ANNOUNCE] jQuery Validation credit card validation extension

2008-11-17 Thread Jack Killpatrick
Hi All, We've (my company) released a new credit card validation extension for the jQuery Validation plugin. It allows you to pass in the type of credit card being used, which therefore allows the validation routine to provide a more thorough validation. The prefix and length of the card

[jQuery] Re: Obama's site jquery mystery

2008-10-23 Thread Jack Killpatrick
I took a quick look at the main page using Firebug. Switching languages makes an ajax post to this url: http://www.voteforchange.com/controller.php and posts these values: languagespanish namescurrent_page pagepre_intro_info perm_namescurrent_page perm_values

[jQuery] localscroll help needed

2008-10-10 Thread Jack Killpatrick
Hi, I'm using the jquery localscroll plugin. I have a tab-based navigation arrangement (tabs are links). It all works fine, but I have a case where I want to prevent the scrolling action from occurring, based on checking some conditions. IE, if I have 5 nav links in use, and the user is on

[jQuery] Re: localscroll help needed

2008-10-10 Thread Jack Killpatrick
skipped. I checked the docs and that doesn't seem to be documented (I did mention that for SerialScroll). I'll add that asap. Cheers -- Ariel Flesler http://flesler.blogspot.com On Oct 10, 4:19pm, Jack Killpatrick [EMAIL PROTECTED] wrote: Hi, I'm using the jquery localscroll plugin. I

[jQuery] Re: localscroll help needed

2008-10-10 Thread Jack Killpatrick
Thanks, that did the trick! - Jack Ariel Flesler wrote: Yes http://demos.flesler.com/jquery/localScroll/changes.txt On Fri, Oct 10, 2008 at 7:28 PM, Jack Killpatrick [EMAIL PROTECTED] wrote: Hmm, I'm using localscroll 1.2.2. Tried it there, but it didn't work

[jQuery] Re: ANNOUNCE: jQuery listnav plugin

2008-10-08 Thread Jack Killpatrick
s plugin and thank you!! We're very psyched with it and it beats the #$@ out of what we had before :)! Best, Craig On Oct 6, 10:41am, Jack Killpatrick [EMAIL PROTECTED] wrote: Hi Ettiene, how'd using it go for you? Thanks to everyone else for the initial feedback. I'm interested to

[jQuery] Re: ANNOUNCE: jQuery listnav plugin

2008-10-08 Thread Jack Killpatrick
Hi Craig, Glad to hear that fix worked, thanks for letting me know about the issue. RE: the counts... have you noticed a pattern or can you show me a couple examples? I'm wondering if maybe it has to do with your overall list having some items that start with numbers instead of letters. ?

[jQuery] Re: ANNOUNCE: jQuery listnav plugin

2008-10-07 Thread Jack Killpatrick
quot;Stay Eat and Play" drop-down (the Dining, Lodging, Activities, Arts, Shopping, and Services links all utilize it in their output). Excellent work on this plugin and thank you!! We're very psyched with it and it beats the #$@ out of what we had before :)! Best, Craig On Oct 6,

[jQuery] Re: ANNOUNCE: jQuery listnav plugin

2008-10-07 Thread Jack Killpatrick
under the "Stay Eat and Play" drop-down (the Dining, Lodging, Activities, Arts, Shopping, and Services links all utilize it in their output). Excellent work on this plugin and thank you!! We're very psyched with it and it beats the #$@ out of what we had before :)! Best, Craig On Oct 6, 10

[jQuery] Re: ANNOUNCE: jQuery listnav plugin

2008-10-07 Thread Jack Killpatrick
It works off of a letter list: var letters = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z']; Which also helps make the letters a known quantity and allows for disabled letters. Alternatively, it could figure out what letters are in

[jQuery] Re: ANNOUNCE: jQuery listnav plugin

2008-10-06 Thread Jack Killpatrick
Hi Ettiene, how'd using it go for you? Thanks to everyone else for the initial feedback. I'm interested to hear if anyone has implemented it anywhere. ? - Jack Ettiene wrote: Excellent stuff man! I'm already busy using it hehe Ettiene

[jQuery] ANNOUNCE: jQuery listnav plugin

2008-10-02 Thread Jack Killpatrick
Hi All, Today we released our first jQuery plugin, which provides an easy way to add alphabet-based navigation to any UL or OL list. Here's a link to our announcement blog entry: http://blogs.ihwy.com/dev/post/jQuery-listnav-plugin-version-10-released.aspx And below is the info from the

[jQuery] hover demo, with puppy

2008-10-02 Thread Jack Killpatrick
Hi All, I just tossed this up on our site. I created this for someone on this list a month or so ago (and for my own edification, to see how I'd do it): http://www.ihwy.com/labs/demos/Current/image-hover-menu.aspx We're building out the demo area of our site... will be tossing more things

[jQuery] Re: ANNOUNCE: jQuery listnav plugin

2008-10-02 Thread Jack Killpatrick
Thanks, glad you like it and thanks for pointing out the lack of title on the page. I took care of that. :-) - Jack emichaellb wrote: This is quite nice. thanks. btw, your linked page is untitled. emichael brandt

[jQuery] Re: ANNOUNCE: jQuery listnav plugin

2008-10-02 Thread Jack Killpatrick
: very nice ! http://www.pixeline.be/blog/2008/listnav-jquery-plugin-_-really-nice-ui/ On Thu, Oct 2, 2008 at 9:52 PM, Jack Killpatrick [EMAIL PROTECTED] wrote: Hi All, Today we released our first jQuery plugin, which provides an easy way to add alphabet-based

[jQuery] Re: Need help making a menu appear next to the users image....

2008-09-05 Thread Jack Killpatrick
I think this (below) will work (I tested it locally). The trick is using setTimeout to allow some time for the mouse to move between the image and the menu, before deciding to hide the menu. This example will make the menu appear when you hover over the image, stay visible if you move your

[jQuery] Re: Stumped by AJAX and events

2008-09-05 Thread Jack Killpatrick
ot; a href="" id="btn_recipient_search"img src="" alt="Search" //a ... /form John On Sep 4, 11:23 pm, Jack Killpatrick [EMAIL PROTECTED] wrote: Sounds like you might having a caching issue. Try these: once: $.ajaxSetup({cache:false});

[jQuery] Re: Need Simplest Ajax

2008-09-04 Thread Jack Killpatrick
I think this will work for you. It uses jquery's data function: http://docs.jquery.com/Internals/jQuery.data style type=text/css .current { font-weight:bold }; /style script type=text/javascript $(function() { $('#nav a').each(function(i,o){ // loop over

<    1   2   3   4   >