[jQuery] Looking for correct Jquery AJAX statement

2007-08-07 Thread Jack
Hello everyone, I want to translate this var chk1 = document.getElementById('city').value + '*' ... var string= '<\/iframe>'; into $("#feeds").get(chk1); or $("#feeds").get("s30.php?id=' + chk1 + '"); or $("#feeds").get("s30.php", { id: chk1 }) Which jquery expression is correct? Than you fo

[jQuery] Parsing XHTML fragment.

2007-09-06 Thread Jack
. Many thanks, Jack

[jQuery] making images cycle with clueTip

2009-11-05 Thread Jack
Hello, is it possible to use clueTip to cycle images. I used jcycle to make a slide show based on images in an html page. That works fine. Now I would like these images to appear in a clueTip. I tried the clueTip feature that allows you to include a web page so I included the web that uses jcycle

[jQuery] Re: Our New (and first) Ajax E-Commerce project using jQuery

2007-11-28 Thread Jack
My main e-mail [EMAIL PROTECTED] This free offer is for everyone. Kind Regards, Jack Kiss On Nov 28, 8:06 pm, resetstudio <[EMAIL PROTECTED]> wrote: > Visitwww.sicilianidoc.itto give it a try. > > It's developed using php and massive jquery and the javascript source > i

[jQuery] question about remove()

2008-12-16 Thread jack
ans. Anyway after frequent changes, will it leave some garbage in jquery? Thank you in advance! Jack

[jQuery] How do I communicate with other windows with jquery

2009-01-22 Thread jack
On firefox mutiple tabs, how do I manipulate the other tabbed window, such as set focus or change css on a specific element?

[jQuery] A small incompatibility about selector on Jquery 1.3.1

2009-02-11 Thread jack
The following works on before Version: $('#zz input:not([readonly]):first').focus().select() On Ver 1.3.1, it won't work unless you change to: $('#zz input:not([readonly=""]):first').focus().select()

[jQuery] is that possible to go back on window unload event

2009-03-12 Thread jack
Hi, all In $(window).unload(function(){ ... }, is that possible to cancel unload event. I mean I would prompt for users if they want to close the window. If they don't want, how do I cancel the event? Jack

[jQuery] Re: is that possible to go back on window unload event

2009-03-13 Thread jack
Thanks Karl, how do I know wether users want to leave or don't want to leave after all? jack

[jQuery] question about each function

2009-04-14 Thread jack
Hi, all See the following. $(input:text).each(function(){ if(something happened) return; --- --- }) I found the 'return' only exit form a particular input element. And it won't return from "each" function. It always go through every element. I mean if something happened I don't

[jQuery] FlexiGrid and JQuery Problems...

2008-09-25 Thread Jack
bleToggleBtn: true, width: 700, height: 200 } ); }); Besides no data being rendered I get an "object is undefined" on like 725 of jquery-1.2.6" and the grid displays the message "Displaying NaN to NaN of undefined items". I've tweaked the Data Transfer object to both exclude and includes various items, but it still doesn't seem to work. I've also tried jquery-1.2.3 and get similar problems, but on a different line. Any clues to what the problem is? Thanks Jack

[jQuery] Re: Thickbox Position is Too Low in IE 6

2008-01-23 Thread Jack
Here is what worked for me: Following problem: IE 7 version .11 do produce a failure where the thickbox will be positioned by the absolulte top postion of the browser NOT the actuall scrolled position this will place the thickbox on top even if you have scrolled down to the bottom of the pag

[jQuery] Re: jCarousel infinite loop problem w/ multiple carousels on display: none

2008-04-17 Thread jack
I was having a problem across all browsers, with both vertical and horizontal carousels, where upon resizing the browser window, no more new items would be visible in the carousel, something like a miscalculation of height or width following the resize/reload. Whatever the specific cause, the end

[jQuery] Media Plugin - unable to overwrite default options

2008-05-22 Thread jack
I was under the impression that this would override the default mp3Player and flvPlayer options: $(document).ready(function(){ $('a.media').media(); $.fn.media.defaults.flvPlayer = '/misc/mediaplayer.swf'; $.fn.media.defaults.mp3Player = '/misc/mediaplayer.swf'; }); Unfo

[jQuery] how do I get a printed jQuery documentation

2008-06-10 Thread JACK
Hi, all How do I get a printed documentation? Jack

[jQuery] easy way to get all input value

2008-06-12 Thread jack
Hi, all Is there an easy way to get all the input values on a form into an object? Thank you very much! Jack

[jQuery] Re: easy way to get all input value

2008-06-12 Thread JACK
Dan, Thank you so much! Jack On Jun 13, 12:17 pm, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > Jack, > > The Field plug-in has a formHash() method which does exactly that: > > http://jquery.com/plugins/project/field > > You can see an example >

[jQuery] can't do a new post

2008-06-13 Thread Jack
Hi I have an gmail account and I sign in then join jQuery (English) group. After I summit a new post, it won't show on Discussions List. Would you please help me to fix it. My account name is quals.jack. Thank you very much! Jack

[jQuery] Question about slice

2008-06-24 Thread jack
Just a beginner's question. I found slice(start, end) seems doesn't pick up that the last one specified by 'end'. Such as slice(0, 3), it picks up 0, 1 and 2. Is that correct? Jack

[jQuery] question about slice()

2008-06-24 Thread jack
I found slice(start, end) doesn't pick up the last one specified by the 'end'. Such as slice(0, 3), it pick up 0, 1 and 2. Is that the way it works? Jack

[jQuery] Re: question about slice()

2008-06-25 Thread jack
Thank you so much, Karl. By the way on jQuery Doc, it said we may use negative integer for starting from the last. But it seems didn't work. Sorry about double post. Jack

[jQuery] Question about Event Handling Optimization

2008-06-26 Thread jack
n a global include? I realize this isn't a cut-and-dry issue but i figured you guys might have some insight into "best practices" for jquery. thanks, jack

[jQuery] Re: Some optimization

2008-06-27 Thread jack
Zebra striping absolutely should be done server-side there is no excuse outside of not having access to the code. On Jun 24, 3:39 pm, Kyle <[EMAIL PROTECTED]> wrote: > I wish pagination were an option, as that would without a doubt be my > first choice. However, it's a list of all applications fr

[jQuery] Re: Question about Event Handling Optimization

2008-06-27 Thread jack
Thanks everyone for your input. My other concern is that if i completely modularize code to seperate includes, then i will lose the one-time download / precaching benefit of a single js download. Perhaps the best approach is to make sure that unnecessary event handlers arent attached using someth

[jQuery] update to 1.2.6 returns different result when retrieving onchange attribute

2008-07-03 Thread Jack
Folks, I had been using jQuery 1.2.3 and had code like this working: if ($(this).attr("onchange")) { var funcCall = new String($(this).attr("onchange")); //alert(funcCall); if (funcCall.search(/^changedDestin

[jQuery] strange problem

2008-07-04 Thread jack
If I move all the bottons inside a , then it works. Jack

[jQuery] Re: strange problem

2008-07-07 Thread jack
sorry, i figured out the problem. because I have another element before this one with the same id and have no any children. Jack On Jul 4, 4:15 pm, jack <[EMAIL PROTECTED]> wrote: > Hi, all > why "$('#browsing_btns').child

[jQuery] a silly question about selector

2008-07-14 Thread jack
Hi, all For selector do I need to qualfy more about the elements I want to select? For example: $('input :radio [name="xxx"]:checked) does it better than the following $([name="xxx"]:checked) Thank you in advance! jack

[jQuery] Re: a silly question about selector

2008-07-16 Thread jack
Thank you so much Karl. Jack On Jul 14, 10:37 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi Jack, > > Not silly at all. > > You don't need to include more about the elements, but beginning with > the tag name may result in faster selector performance than start

[jQuery] vertical scroll on tbody

2008-07-25 Thread jack
HI, all Is that possible, within a table, I can have a tbody with vertical scrolling feature and keep thead fixed with no scrolling? Thank you in advance! Jack

[jQuery] how do I stop a further event will be ahppened again if current event has not yet finished

2008-08-18 Thread jack
Hi, all If an event hasn't finished how do I prevent the same event being triggered again? Thank you in advance! Jack

[jQuery] simulate a keypress

2008-08-18 Thread jack
Hi, all I found a message on this group about simulating a keypress such as $('input#search_fld').trigger('keypress',[{preventDefault:function() {}, keyCode: 49}]); It won't work for me. Please advise, thank you in advance! Jack

[jQuery] stay at top div

2007-04-29 Thread Jack Killpatrick
were pure css didn't work in IE (but did in FF). Anyone know of a plugin, example, have a tip, etc? Thx, Jack

[jQuery] resizing table to fit viewport

2007-05-01 Thread Jack Killpatrick
how the google calendar main table resizes. I figure I can use the dimensions plugin and put something together, but I'm wondering if maybe there's a plugin or snippet of code someone could point me to that would ease the process. Thoughts? Links? Thx, Jack

[jQuery] Re: CFJS plugin

2007-05-01 Thread Jack Killpatrick
While you're at it (fixing bugs), I think I found some more (in latest release): DollarFormat resulted in a number like this: $,201,445.05 DecimalFormat results in a number like 123..45 If those aren't bugs, or you need repro code, let me know. Thx, Jack Christopher Jordan wrote:

[jQuery] Re: CFJS plugin

2007-05-01 Thread Jack Killpatrick
Chris, Thx much. I tried DollarFormat using the 5/1 rev and it worked. I don't have a test case available for the DecimalFormat, sry. Much appreciated! - Jack Christopher Jordan wrote: Jack, I have fixed both of these bugs. I've made fixes to DollarFormat() and a require

[jQuery] Re: jQuery Examples pack

2007-05-02 Thread Jack Killpatrick
Kevin, these are really nice, thanks for sharing them. Is the jqtabcontrol.js based on any other plugins/libraries/yadda...? That's the first that I've seen the "more" tabs handling in a "jquery-based" tab library, very nice. Thx, Jack Kevin Scholl wrote: I

[jQuery] unblockUI after content gets rendered?

2007-05-02 Thread Jack Killpatrick
for it's presence or something, but that doesn't seem too elegant. FWIW, neither the template system nor anything in MLR.makeFancyTable() have any existing callback kind of thing that could help. Thoughts? TIA, Jack

[jQuery] image resizing

2007-05-05 Thread Jack Killpatrick
Hi All, Anyone know if there's a jquery plugin that will do something like this? If not, anyone working on one? http://www.agilepartners.com/blog/2005/12/07/iphoto-image-resizing-using-javascript/ TIA, Jack

[jQuery] OT: js file obfuscation

2007-07-27 Thread Jack Killpatrick
lihood of reverse-engineering. Thx, Jack

[jQuery] Re: Best (lightest) Accordian Menu PlugIn

2007-08-01 Thread Jack Killpatrick
t all seemed a bit ragged or had something about them that I didn't like or didn't fit my need, which was for a very lightweight control with a reasonable amount of configurability. - Jack Mitchell Waite wrote: Is anyone aware of a good accordian plugin. I have been using the one f

[jQuery] Re: Best (lightest) Accordian Menu PlugIn

2007-08-02 Thread Jack Killpatrick
...I know there's an active thread about it...and another accordion that John made a demo of). I didn't notice a bug...what's the bug? I'm using jquery 1.1.2 with it. - Jack Justin Sepulveda wrote: Haha ... I had this up to show a small bug in the jQuery Fx; I didn't thin

[jQuery] select .change event not firing on up/down arrow press

2007-08-03 Thread Jack Killpatrick
ing it to fire a slew of ajax calls. Any advice on how to handle that situation? I don't want to use blur, because I want the (eventual) ajax call to be fired just by changing the select box. I figure I can use a setTimeout or setInterval, but not sure what the most elegant way would be. TIA! Jack

[jQuery] Re: select .change event not firing on up/down arrow press

2007-08-03 Thread Jack Killpatrick
Ah, yes, I see that now. Works for me ;-) thx for pointing that out! Dan G. Switzer, II wrote: When the user has changed the value with the keyboard, it will fire the change event when it loses focus. (I think that's right..) Correct. The browsers won't fire the onchange event on a sel

[jQuery] Re: co-existing with mootools: help

2007-08-22 Thread Jack Killpatrick
a little mootools thing I need to use so don't want to touch other stuff that's already working. Thx. Jack Benjamin Sterling wrote: Check out http://michaelshadle.com/2007/07/03/jquerys-no-conflict-mode-yet-another-reason-why-its-the-best/ On 8/22/07, *Jack Killpatrick* <[EMAIL PR

[jQuery] Re: co-existing with mootools: help

2007-08-22 Thread Jack Killpatrick
ou written) in that, you should still be ok. On 8/22/07, *Benjamin Sterling* < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: Sorry Jack, never ran into the issue. Maybe replacing all the $ in mootools' core, probably not the best approach, but I could not find

[jQuery] Re: co-existing with mootools: help

2007-08-22 Thread Jack Killpatrick
us browser-specific issues (crashing browsers, not loading from local cache) that made us give up on them. - Jack Benjamin Sterling wrote: @GTG, great question, I second that. @Jack, if you can explain what you are trying to do with mootools, maybe we can come up with an alternative. On 8/22/07,

[jQuery] Re: co-existing with mootools: help

2007-08-22 Thread Jack Killpatrick
, etc? Also, I never came across this one in my googling-about. In general, it looks like it's a work in progress, whereas the moo solution is documented, tested, etc. ? Is Flash involved? I didn't see any sign of it. If not, how's that multi-select dialog work? - Jack Rey B

[jQuery] Re: co-existing with mootools: help

2007-08-22 Thread Jack Killpatrick
ny browsers (FF 2 and IE 6/7 are my targets) with latest rev of Flash and b) doesn't have any funky caching issues (like not showing up on the page). - Jack Jack Killpatrick wrote: That's close (no visible way to clear the full list of uploaded items for a re-select), though I haven

[jQuery] Re: co-existing with mootools: help

2007-08-22 Thread Jack Killpatrick
Thanks Rey, I'll do that, much appreciated. - Jack Rey Bango wrote: Jack, I think your best bet is to head on over to the jQuery UI mailing list and discuss this with Gilles. He's the author of it and is working to have a strong version ready for jQuery UI. http://groups.google

[jQuery] Re: Release: Accordion 1.5

2007-08-24 Thread Jack Killpatrick
anels. I have some panels with a bunch of content, which would have scrollbars appear (fine), but some of the panels have very little content and in this case I'd like to prevent a big gob of whitespace at the bottom of them, by tweaking the height for that panel a bit. Thanks, Jack Jörn

[jQuery] Any plugins like googiespell?

2007-08-27 Thread Jack Killpatrick
Hi All, Anyone know if there's a jquery plugin along the lines of: http://orangoo.com/labs/GoogieSpell/ ? TIA, Jack

[jQuery] Re: Is there checkbox/radio image plugin?

2007-08-31 Thread Jack Killpatrick
Maybe this? http://dev.jquery.com/~gilles/cssHover/?checkbox3=c3&checkbox8=c8&checkbox11=c11&radiogrp=r3&button3=&text1=Some+default+value - Jack Sergei wrote: Hello, Is there any checkbox/radio image replacement plugin for jQuery? Like on this page: http://mootools.net/download Thank you.

[jQuery] unable to attach events when blockui is active

2007-09-12 Thread Jack Killpatrick
all returns I'm repopulating the html inside ml_shippingAddresses and reattaching event handlers to DOM nodes in it. Then calling: $('#ml_shippingAddresses').unblock(); Thanks, Jack

[jQuery] jquery tablefilter > grouping, sums?

2007-09-16 Thread Jack Killpatrick
er col is sorted and is flagged as subtotal-able) for the Number col". Would be rather sweet for financial reporting stuff, etc (especially combined with a fixed-footer for grand totals and scrolling for the tbody). If not via tableFilter, any other plugins that do something like what I described? TIA, Jack

[jQuery] Re: Falling at the first hurdle

2007-09-17 Thread Jack Killpatrick
Jay, Something in here might help you: http://aspnetresources.com/blog/code_blocks_inside_master_pages_cause_trouble.aspx It's about css paths, but the same applied to setting js paths in your masterpages. - Jack Jay wrote: Thanks, you are right. The runat server attribute mean

[jQuery] Re: JSPacker for .NET

2007-09-18 Thread Jack Killpatrick
Hi Jeffrey, I'd like a copy, too. I emailed you direct (off group), but maybe you didn't get it. Thx much, Jack Jeffrey Kretz wrote: I've ironed out the bug I found, and sent the source files/binaries to Sam and Keith. Soon I should have these files hosted properly. If an

[jQuery] Re: BlockUI question

2007-09-20 Thread Jack Killpatrick
Mike, Would you mind elaborating on this ? "Well, not exactly, but it does put the onus on you as the user to clean up your cache before page unload." What should I do to clean up the cache before page unload? I use BlockUI for a bunch of things, so am curious. Thanks,

[jQuery] Re: BlockUI question

2007-09-21 Thread Jack Killpatrick
Thanks, Mike! BTW, love this plugin, and have found cycle, form and rounded corners plugins to be awesome, too! (just thought I'd toss that in since I have your attentiongreat stuff ;-) - Jack Mike Alsup wrote: Set all your cache vars to null. $(window).unload(fun

[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: Listnav initial display of no items?

2009-07-23 Thread Jack Killpatrick
howing){ $('#yourUL').show(); isShowing = true; } } }); That onClick will fire on every letter click, but that's minimal overhead since you'd be just checking the value of isShowing after the first click is handled (which makes your UL show up). - Jack

[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

[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: listnav letter question?

2009-07-24 Thread Jack Killpatrick
e bit more? I might considering adding an option for this kind of thing to the plugin. Thanks, Jack keith.westb...@gmail.com wrote: Ok... I think I got it. I tweaked the addClasses function to eval a list items attribute instead of the text value. I'm using the attrib LANG for now. I popul

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

2009-07-24 Thread Jack Killpatrick
$('#alphalist').show(); } } }); }); You can also take a look at demo 5 here to see onClick being used: http://www.ihwy.com/Labs/Demos/Current/jquery-listnav-plugin.aspx - Jack rubycat wrote: Yes, the little treasure is your plug-in!! Um, I hit a deadend though

[jQuery] Re: Listnav Umlauts and special chars

2009-07-26 Thread Jack Killpatrick
it used in a public place, mind sharing the link? I'd like to take a look. Thanks, Jack sixtyseven wrote: Oh, and of course the "not found" sentence should be a variable, too. This is a real fantastic plugin, I used it to make a faq section for a site, by combining it with a simp

[jQuery] Re: Listnav Umlauts and special chars

2009-07-26 Thread Jack Killpatrick
t). Offhand, I don't know if there's an easy way (or whether it really makes sense logically to a user) to "degrade" chars to their nearest neighbor. I don't know enough about other languages to know. Thanks, Jack sixtyseven wrote: I ran into a problem when having um

[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

[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: Listnav initial display of no items?

2009-08-04 Thread Jack Killpatrick
includeAll: false, // cookieName: 'xalpha_list', onClick: function(){ clicks++; if(clicks == 1){$('#alphalist').show();} // this has clicks == 1 instead of == 2 now } }).hide(); // I added this }); Hope that works for you.

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

2009-08-07 Thread Jack Killpatrick
n their way to the browser, but maybe just make sure they have quotes around them (again, seems unlikely). - Jack Rick Faircloth wrote: I've got a MySQL db that contains "Yes" or "No" in char datafields. When I use $.ajax to bring that into the DOM and output th

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

2009-08-07 Thread Jack Killpatrick
I do CF dev work, too, but haven't come across this yet, but it made me curious. I googled "coldfusion yes no serialize json" and it brought up a few articles about this. Sounds like adding a space after "yes " and "no " is the workaround some other people u

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

2009-08-07 Thread Jack Killpatrick
t run up against the same issue, but I'm not sure if I've had Yes/No data to deal with. - Jack Rick Faircloth wrote: Just, fyi, Jack and anyone else... The solution was to put an inline condition into the code: ...spanRight">' + (row[18] ? 'Yes'

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

2009-08-10 Thread Jack Killpatrick
u. If that's a feature that might be of interest to you I can get you a copy of the pre-release version. I'll look into what you reported. Oh, uh, just to make sure, you're talking about the listmenu plugin, right? http://www.ihwy.com/Labs/jquery-listmenu-plugin.aspx Thanks,

[jQuery] Re: listmenu

2009-08-10 Thread Jack Killpatrick
he nav bar, where things like ", something" (items starting with punctuation) and Äpfel (chars other than A-Z and 0-9) will appear. I'm shooting for putting the new rev out tonight or tomorrow. Thanks, Jack

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

2009-08-11 Thread Jack Killpatrick
wy.com/labs/demos/current/jquery-listmenu-plugin.aspx Some of these features were based on user requests. Thanks to everyone for the feedback. - Jack

[jQuery] Re: listmenu

2009-08-11 Thread Jack Killpatrick
Thanks Paul, the new version that I just announced via another email takes care of the issue you found and adds some new features. FYI: http://blogs.ihwy.com/dev/post/New-versions-of-iHwy-listnav-and-listmenu-jQuery-plugins.aspx - Jack Paul Speranza wrote: Jack, yes, the list menu plugin

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

2009-08-14 Thread Jack Killpatrick
clude that in the plugin. I'm on vacation right now, but early next week could take a look at a workaround you might be able to use to show a message and then hide it after IE is done chugging way. Let me know and I'll put some thought into it. Thanks, Jack Anoop kumar V wrote: I a

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

[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 <http://twitter.com/cioa> demo: http://jsbin.com/azare code: http://jsbin.com/azare/edit - Richard On Fri, Aug 21, 2009 at 3:59 PM,

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

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

[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

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

[jQuery] Re: Twitter for support?

2009-09-13 Thread Jack Killpatrick
lutions for other plugins I like to follow). - Jack Mike Alsup wrote: Over the past few months I've been fielding an increasing number of support requests via Twitter (for Cycle, BlockUI, and Form plugins). In some ways it's a nice way to respond to simple questions but obviously it'

[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

[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

[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

[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

[jQuery] $(':target') and $(location.hash)

2009-09-24 Thread Jack Bates
$(':target') works in Firefox 3.5, but not Firefox 3.0 and some other browsers, http://www.sfu.ca/~jdbates/tmp/qubit/200909231/#aaa ^ in Firefox 3.5, $(':target') selects just the element with id="aaa", so this element appears blue while the other appears red In Firefox 3.0 and some other brows

[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

[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-10-02 Thread Jack Killpatrick
. I know this issue has been tackled various ways in table plugins, but I don't think I've seen a plugin made specifically just for show/hiding a scrollbar and working around some of these issues. Anyone? Thanks, Jack Matt Zagrabelny wrote: On Thu, 2009-10-01 at 22:25 -0400, Karl

[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, Thi

[jQuery] detect quicktime?

2009-04-26 Thread Jack Killpatrick
e? Thanks! - Jack

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

[jQuery] flexbox question

2009-04-30 Thread Jack Killpatrick
ures that Flexbox has that I'd like. Thanks, Jack

[jQuery] state of the art for corner rounding?

2009-05-01 Thread Jack Killpatrick
use those to create rounded corners in IE and Safari (IE mainly... using excanvas or something with it is fine, too). Any advice? For the project I'm working on now I don't need to have lines at the border (ie: no border:1px solid black or anything). Thanks, Jack

  1   2   3   4   >