Re: [jQuery] google groups

2007-03-26 Thread Glen Lipka
On 3/26/07, John Resig <[EMAIL PROTECTED]> wrote: > > Yeah - it looks like the final switch was made, and everyone is > getting their updates. We're moving to Google Groups! > > --John > I just tried to switch to get individual emails and it said There is a problem with your choice of subscrip

[jQuery] Rounded Corners with Drop Shadow

2007-03-26 Thread Glen Lipka
http://www.ruzee.com/blog/shadedborder Reported on Ajaxian. It says it's jQuery friendly although it doesn't look like a plugin. Question: Does it make sense to jQuerify a script like this if it's jQuery friendly already? What benefit could be gained? Smaller? Faster? Better integration wit

Re: [jQuery] Plugin Requests

2007-03-23 Thread Glen Lipka
@Leonardo, This looks great. It definitely belongs on the plugins page. Select box Plugin http://cbach.jquery.com/demos/selectbox2/ @Dan, Take a look at this one: http://www.yui-ext.com/deploy/ext-1.0-alpha3/examples/form/combos.html It goes WAY beyond what a typical select box does. Nice sty

Re: [jQuery] Plugin Requests

2007-03-23 Thread Glen Lipka
Ooh sorry, one more. It would be awesome to have a plugin that could transform a regular structure into something that you could use CSS on. Maybe even supporting . So the backend people still get their Select box, but the front end is reconfigured to be much more flexible. Select boxes are a vi

Re: [jQuery] Plugin Requests

2007-03-22 Thread Glen Lipka
On 3/22/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: > > Post your plugin requests. I thought this would have made an interesting plugin, but I didnt know how to do it. http://commadot.com/jquery/slots/ Also, Karl wrote this: http://www.learningjquery.com/2006/10/scroll-up-headline-reader B

Re: [jQuery] ANNOUNCE: Tabs 2.7

2007-03-22 Thread Glen Lipka
This is awesome. I told my successor at Intuit about it to see if he can replace the homepage tabs with your tabs. They removed the slide effect because it had issues when you clicked real fast between tabs. I think yours fixes that. Congrats! Glen

Re: [jQuery] [JQuery] Attribute selector

2007-03-20 Thread Glen Lipka
My expandos are like school in the summer. No Class. My html is like my father. No Style. On 3/20/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Klaus Hartl schrieb: > Klaus Hartl schrieb: > >> It's a common misunderstanding that classes are >> for style. >> > > ... that classes are for style

Re: [jQuery] jQuery Powered Sites - New Sites Added

2007-03-20 Thread Glen Lipka
Finally, http://www.quickbooks.com and http://www.quicken.com have added the QuickLinks at the top. Also, http://www.turbotax.com uses jQuery fairly extensively. These sites get alot more traffic than the other intuit ones. Glen On 3/19/07, Rey Bango <[EMAIL PROTECTED]> wrote: New sites add

Re: [jQuery] [JQuery] Attribute selector

2007-03-19 Thread Glen Lipka
Isn't it invalid Xhtml, not invalid html? There has been a whole slew of expandos posts that say its basically fine for most primitive uses. However, check is a particularly wierd one because "checked" *is* a valid one and this makes it confusing. So you might need to put a value in your "check"

Re: [jQuery] [JQuery] Attribute selector

2007-03-19 Thread Glen Lipka
How many does it find if you have *check=""* on #2. Maybe it needs that to find it. Glen On 3/19/07, Magnús Örn Gylfason <[EMAIL PROTECTED]> wrote: Hi, I'm having a bit of a problem with the attribute selector in jquery. Given html like: my javascript $( "[EMAIL PROTECTED]",

Re: [jQuery] fadeToggle

2007-03-16 Thread Glen Lipka
I think you have a point. There is also ToggleClass. Why is the Toggle in the front of ToggleClass and at the end of SlideToggle. Couldnt toggle be unified, like $("p").toggle("fade")...Disclaimer: I have no idea what I am talking about. Glen On 3/16/07, skube <[EMAIL PROTECTED]> wrote: I'm

Re: [jQuery] cursor not showing in modal boxes

2007-03-16 Thread Glen Lipka
Which browser? We had it happen in Firefox. It has something to do with a wierd FF bug. http://blog.tremend.ro/2007/01/22/mouse-cursor-disappears-in-firefox/feed/ http://blog.tremend.ro/2007/01/22/mouse-cursor-disappears-in-firefox/ Glen ___ jQuery mai

[jQuery] Move caret position Input type="file" after browse

2007-03-16 Thread Glen Lipka
Use case: 1. 2. User clicks browse. 3. User chooses file. 4. Input value is changed to say path name. At this point, I want to move the carat to the end of the string, not the beginning. Any way in jQuery to do it? Glen ___ jQuery mailing list discu

Re: [jQuery] How to convert "class" to "style='attrs ...'"

2007-03-15 Thread Glen Lipka
Would something like this be in the ballpark? I am sure there is a better way. Like creating some kind of array. I don't know. Glen ("#mycontainer div").each(function(i){ var oFontRule = $(this).css("font"); var oColorRule = $(".test").css("color"); var oPaddingRule = $(".test").css("pa

Re: [jQuery] the pitfalls of jquery

2007-03-15 Thread Glen Lipka
Can you rename it to RegularJSHelperFunctions.js and tell them you wrote it yourself? I'm on a project now that I cant use jQuery. They use YUI. I feel like I lost my right arm. I can't do simple things. Glen ___ jQuery mailing list discuss@jquery.co

Re: [jQuery] Blurry font on fadeIn

2007-03-14 Thread Glen Lipka
I'm a loser. Asked and answered already. http://jquery.com/pipermail/discuss_jquery.com/2006-November/015669.html *RULE: Whenever fading something with TEXT, it should have an explicit background.* Thanks Christopher Jordan! Glen ___ jQuery mailing l

[jQuery] Blurry font on fadeIn

2007-03-14 Thread Glen Lipka
See code below: in IE7, when I do this, the font is all blurry. If I use fadeIn(), it looks blurry until the very end and then fixes itself. Firefox looks right the whole time. Am I doing somthing wrong? Glen This is the Name /div> Edit $("a.flipflopButton").toggle(function(){ $

[jQuery] Input tags (off topic, sorry)

2007-03-14 Thread Glen Lipka
Something The padding, margins and borders built into the textarea and input tags make them go past the red border. So I cant line up the three fields. Is there any way to fix this? Sorry for the off topic. Im just so annoyed with it. Glen __

Re: [jQuery] Why IE hangs with this code? (Newbie to jQuery)

2007-03-13 Thread Glen Lipka
There is a dimensions plugin that gets the client height/width easier. http://dev.jquery.com/browser/trunk/plugins/dimensions/dimensions.js?format=txt Glen On 3/13/07, Hrvoje Blažeković <[EMAIL PROTECTED]> wrote: When I trie with other elements that You suggested, then the functinality in FF

Re: [jQuery] How to add a class to a tag specified in a variable?

2007-03-11 Thread Glen Lipka
Im going to guess: Var somevar = 1; $("[EMAIL PROTECTED]" + somevar + "]).slideUp(); Was I right? Glen ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] New plugin: ContextMenu

2007-03-08 Thread Glen Lipka
Cool! Just as a styling suggestion. Would it be hard to enable Office 2007 style on it? Example from powerpoint here: http://glenlipka.kokopop.com/jQuery/right-click.gif So some wishlist items (feel free to chuck these in the "circular file"): 1. Ability to disable/gray out a choice (maybe with

Re: [jQuery] Getting a development team to use jQuery

2007-03-08 Thread Glen Lipka
One thing that I have noticed in speaking wiwth the development team I work with (trying to convert) is the concept of the FOR loop in jQuery. in jQuery, I assume that EVERYTHING has a FOR loop attached to it. So $(".myClass").fadeOut() will fade out *all* of the classes, not just one. The EACH

Re: [jQuery] get class name

2007-03-05 Thread Glen Lipka
If the ID only has one class you can also say: $("#myID[class=foo]").fadeOut(); or var theNode = $("#myID[class=foo]") Also, wouldn't your example work without the IF? $("#myId).is("myClass").fadeOut(); or var theNode = $("#myId).is("myClass") Glen If you want to determine whether #myId has

Re: [jQuery] What is the status on the Ext port?

2007-03-05 Thread Glen Lipka
Daemach*,* Me too. The EXT project is very much in "Technical Preview" mode. They made it clear to me, after some squeaky wheeling on my part, that they *are* in progress building out documentation, tutorials, etc. They asked that I(We) be patient. Nothing is there now, but they said alot will

Re: [jQuery] Of extendos, metadata and valid XHMTL - Is it ok to add attributes to elements?

2007-03-03 Thread Glen Lipka
I'm quoting Mike Alsup from the jQuery 1.1.2 thread, which I thought did a good job relating to this question: Based on this info, I feel totally safe using it. I can't even think of a reason to use objects in this way, but I am not that complex. :) *That's correct. It's safe to store primitive

Re: [jQuery] multiple elements, one function

2007-03-02 Thread Glen Lipka
You might want to avoid using IDs and use a class instead. Like or use an attribute like Then $("select.foo"). or $("select[bindtome=true]") will bind to multiple. Additionally, you dont have to bind the actual code there, you could call a seperate function. Lastly, you could use the 'each" if

Re: [jQuery] ANNOUNCE: Alpha 2 of Ext 1.0 for jQuery is Available

2007-02-25 Thread Glen Lipka
Although jQuery probably achives what one needs for a basic "rich" marketing site. If you want a rich "windows" like experience or even a basic RIA site you will need more. The Interface plugin could provide some of that. There are plugins that provide some more. But as a coordinated suite, the

Re: [jQuery] What would be the best way to...?

2007-02-23 Thread Glen Lipka
I havent tested, but this is in the ballpark I think: $("[EMAIL PROTECTED]").each(function(i){ currentName = this.attr("name"); currentValue = this.val(); this.append("" + cuurentValue + "; this.remove(); }); So this would destroy the input and replace with textarea. There might be a better

Re: [jQuery] Incompatibilities with IE: Selection and Range Object (not jQuery related).

2007-02-23 Thread Glen Lipka
to the API. And thanks ;) Abel On 2/23/07, Glen Lipka <[EMAIL PROTECTED]> wrote: > > Couldn't you use the appendTo() function? > The API reference example looks just like what you are asking. > > Glen > > > On 2/23/07, Abel Tamayo < [EMAIL PROTECTED]> wrote

Re: [jQuery] Incompatibilities with IE: Selection and Range Object (not jQuery related).

2007-02-23 Thread Glen Lipka
Couldn't you use the appendTo() function? The API reference example looks just like what you are asking. Glen On 2/23/07, Abel Tamayo <[EMAIL PROTECTED]> wrote: Hi all, I'm trying to create a plugin for jQuery that willlet you edit text in an iFrame like it was a text processor, but I need to

Re: [jQuery] Does there a way to set element position like ["myContextEl", "tr", "tl"]

2007-02-22 Thread Glen Lipka
Not in the base, but you might want to use the dimensions plugin. Look at this sample page: http://brandon.jquery.com/plugins/dimensions/test/offset.html There are a few "rounded corner" plugins as well which find those spots. http://docs.jquery.com/Plugins When you say "overlay" do you mean lik

[jQuery] RTFM

2007-02-21 Thread Glen Lipka
Ive been trying all day to figure out this out: jQuery code: $(".readOnly").hide(); $(".editable").fadeIn("slow"); YUI-ext code: ---still trying to figure it out I read the documentation. (very technical, no examples) I searched the forums. (Couldn't find it) I searched google. (no dice) I post

Re: [jQuery] jQuery and Jack Slocum's Ext

2007-02-19 Thread Glen Lipka
Build a better mousetrap and the world will beat a path to your door. *Ralph Waldo Emerson* ** Congratulations! It's amazing to see the speed in which jQuery has taken off. I am waiting for the release one day that Microsoft is dumping Atlas in favor of jQuery!

Re: [jQuery] Figure out which img in a div was clicked?

2007-02-19 Thread Glen Lipka
jQuery Golden Rule: If you are using an IF statement or an ID, then there is an easier way. Reference: http://docs.jquery.com/DOM/Traversing/Selectors Use: :visible in the selector itself. Relative pathing. siblings() not() slideToggle() http://docs.jquery.com/Effects#slideToggle.28_speed.2C_cal

Re: [jQuery] Figure out which img in a div was clicked?

2007-02-18 Thread Glen Lipka
Little more followup... The reason to use "each" is so you can do: var theParticularButton = $(this).attr("someAttrbuteOfTheButton"); That would allow you to open up a div with the screenshots and close the one with the reviews in the same area. ___ jQu

Re: [jQuery] Figure out which img in a div was clicked?

2007-02-18 Thread Glen Lipka
Mirroring back the desired effect: 1. Start with all DIVS hidden. 2. Click a button, and that *related* DIV opens and all other open DIVs close. You might want to use the "each" function for this. Untested code: $("div.anirec_buttons img").each(function(i){ $(".anirec_more").slideUp("slow"); //

Re: [jQuery] jQuery Design Decisions? Comparison to MooTools?

2007-02-12 Thread Glen Lipka
Matt, Waning: The following is written by a NON-programmer. jQuery to me is the evolution of CSS, not the evolution of JavaScript. When I discovered CSS, I fell in love with it because of the :hover tag. It just worked. I didn't need to learn programming. It was like magic. To me, jQuery an

[jQuery] Site using jQuery

2007-02-12 Thread Glen Lipka
It's live finally. http://www.intuit.com Very jQuery. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] jQuery for President

2007-02-10 Thread Glen Lipka
Alot of new snazzy sites are being launched for candidates running for president. Only one candidate is clearly going after the jQuery community. http://www.barackobama.com (jQuery!) Although they are using 1.04. Hello? I was all on board until I saw they haven't upgraded. Wassup widdat? Is th

Re: [jQuery] The jQuery Litebox

2007-02-10 Thread Glen Lipka
I would appreciate any feedback. Take a look at this: http://vikjavev.no/highslide/ I love how this one works. I wish there was a jQuery version. Specifically I love: 1. Dragging it around. 2. Ability to open up more than one. 3. That is zooms up. 4. The ability to declare the captions. My

Re: [jQuery] request for input: textlimiter plugin

2007-02-05 Thread Glen Lipka
TODO - allow counter to count up instead of counting down using a parameter. - use a parameter to set the class when hitting the limit? - documentation for non-programmers One thing I started doing (for Sentence type input) is allowing the user to go past the limit with warnings and stop them

Re: [jQuery] jqModal updated - less code, more features.

2007-02-02 Thread Glen Lipka
Looking good. What if I had the *interface* plugins in there? Could you leverage resizable and draggable? Also, is it possible to set opacity with FadeTo() so it has a nice vista glass see-through effect? Glen ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Animate font weight

2007-02-02 Thread Glen Lipka
You could have 1 span with the text *bold*; display:none, and 1 with the text normal. Then fade 1 out and fade 1 in at the same time. (Positioned right on top of each other) It might look right. Glen On 2/1/07, Karl Rudd <[EMAIL PROTECTED]> wrote: Technically font-weight can be a number, lik

Re: [jQuery] jQuery for Wordpress

2007-02-01 Thread Glen Lipka
Ive been trying to use the plugin on my blog. Just upgraded to 2.1 You might consider combining it with "Script" plugin to kill two birds with one stone. This article was helpful: http://codex.wordpress.org/Using_Javascript I think I might switch to a different Visual Editor that has a true "CO

Re: [jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-29 Thread Glen Lipka
http://yui-ext.com/playpen/yui-ext.0.40/examples/dialog/msg-box.html From a visual and interaction design standpoint, these are awesome. It makes a huge adoption difference to have a great theme with your plugin. Keep in mind, that page has 448k in JS. Too big to use. Glen __

Re: [jQuery] "THE" List of Sites Using jQuery

2007-01-19 Thread Glen Lipka
You might want to break out Turbotax.com as a link. They use it too and get ALOT more traffic than intuit.com does. The "upgraded intuit.com site" uses alot more, but they are dragging their feet to deploy. Also, http://payroll.intuit.com/ uses it. Glen On 1/18/07, Rey Bango <[EMAIL PROTECTE

Re: [jQuery] IE6 fadeIn/fadeOut Problem (css prob?)

2006-12-09 Thread Glen Lipka
I didn't analyze the whole thing, but just a quick question: Have you considered using the fadeTo() function? it works better than messing with the opacity in the CSS. Glen On 12/9/06, stargate <[EMAIL PROTECTED]> wrote: Hello, i have a problem with the fadeout/fadein function on IE with j

Re: [jQuery] Efforts to Convert Folks to jQuery

2006-12-07 Thread Glen Lipka
First paragraph Suggestion: jQuery is a javascript framework that is highly coupled to CSS and eliminates the cross-browser complexities of DOM scripting. If you love CSS, you will love jQuery. ___ jQuery mailing list discuss@jquery.com http://jquery.c

Re: [jQuery] Text reflection

2006-12-07 Thread Glen Lipka
Yeah, there should be a filter for text reflection...? That way you had the filter for IE, canvas for Safari and Firefox (1.5+) and then you could let it degrade gracefully in other browsers... -- Klaus It would be pretty cool as a plugin. :) ___

Re: [jQuery] Efforts to Convert Folks to jQuery

2006-12-07 Thread Glen Lipka
Suggestions from the information architect in me: 1. Get a global navigation, The links at the bottom are not natural. At the top, in big buttons horizontal. a. Home b. Samples c. Plugins d. Support e. Download f. Blog a. Home This page should say what it is and have a

[jQuery] Text reflection

2006-12-06 Thread Glen Lipka
Last minute additions. :) Anyone know if a way to make regular html text reflect the way it does for images in reflection.js? http://cow.neondragon.net/stuff/reflection/ Glen ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Departure

2006-12-04 Thread Glen Lipka
Unfortunately, I am leaving Intuit. (Friday is my last day) In the past 6 months, I have tried to spread the gospel of jQuery at Intuit. Unfortunately, where I am going, YUI is already being used. I really enjoyed using jQuery and think that it is something special. I haven't been this excited

Re: [jQuery] Window Size

2006-12-01 Thread Glen Lipka
http://jquery.com/dev/svn/trunk/plugins/dimensions/dimensions.js?rev=587 Is there a homepage for this plugin? ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Window Size

2006-12-01 Thread Glen Lipka
var dimensions = {width: 0, height: 0}; if (document.documentElement) { dimensions.width = document.documentElement.offsetWidth; dimensions.height = document.documentElement.offsetHeight; } else if (window.innerWidth && window.innerHeight) { dimensions.width = windo

Re: [jQuery] Checkbox: Selecting all Previous

2006-11-29 Thread Glen Lipka
I changed some of it and stopped using the checkboxes, but this would work with the checks too. I need the ID attribute for something else, soI used the REL attribute as proscribed. $(".checkbox").click( function() { currentOption = parseInt($(this).attr("rel")) + 1; $("#options div.checkbox").

[jQuery] ThickBox Wow

2006-11-28 Thread Glen Lipka
Check this out: http://vikjavev.no/highslide/ Click on the images. You can drag and drop the popup! The zoom is awesome! Glen ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Checkbox: Selecting all Previous

2006-11-27 Thread Glen Lipka
This might be a newbie question, but I am having trouble with it. I have 4 checkboxes vertical box 1 box 1 and 2 box 1 and 2 and 3 box 1 and 2 and 3 and 4 When I click one, I want to check the boxes of all the ones previous to it (including it). And uncheck all the boxes after it. How wou

Re: [jQuery] Tabs plugin callbacks - what makes most sense?

2006-11-27 Thread Glen Lipka
$('...').tabs({ onClick: function(clicked) { if (clicked == particularTab) { // do soemthing } } }); Having trouble with this. How can I tell what is "clicked"? I have ID's to differentiate the tabs. Shouldn't I use show instead click anyway? $(this) is t

Re: [jQuery] Stop using thickbox!

2006-11-25 Thread Glen Lipka
In IE7, I get some JS errors. First and Third sample: 1573: Invalid Argument The second one works. I like the interaction, maximize, close, etc. Great work! A CSS version would rock, but I'm not complaining. I will be looking for a place to use this. Glen PS. Quicken just relaucnhed their s

[jQuery] Zooming ThickBox

2006-11-24 Thread Glen Lipka
http://vikjavev.no/highslide/ Someone pointed this out to me. It has a wonderful interaction. I'm wondering how hard it would be to recreate using jQuery. Glen ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Off topic: which programming language forwebdevelopment

2006-11-22 Thread Glen Lipka
I used Cold Fusion for years. It has a pretty committed community, although I wonder about Adobe's ability to keep it going properly. The inventors of CF have long since left Macromedia/Adobe. PHP is so easy to learn. It just works. It is today, what cold fusion was 10 years ago. (The fastest

Re: [jQuery] Disable a form field using jQuery?

2006-11-22 Thread Glen Lipka
I did something similar here. http://glenlipka.kokopop.com/jQuery/inlineError.htm Basically return false on the input if the criteria is not met. And if it is met, then do $("#formID")[0].submit(). The answer to your question (I think) is to return false on the onclick event. Glen On 11/22/06

Re: [jQuery] Tabs plugin callbacks - what makes most sense?

2006-11-22 Thread Glen Lipka
>>> I'm thinking about extending the callback system in the Tabs plugin to >>> not only allow one callback, but different ones for more flexibility: >>> > On My latest prototype using tabs: http://glenlipka.kokopop.com/jQuery/tabs/# I want to ac

Re: [jQuery] Animating text like a cash register

2006-11-22 Thread Glen Lipka
ECTED] [mailto:[EMAIL PROTECTED] Behalf Of *Glen Lipka *Sent:* Tuesday, November 21, 2006 7:24 PM *To:* jQuery Discussion. *Subject:* Re: [jQuery] Animating text like a cash register Making huge progress, thanks for the suggestions. I did it with a long col of digits using line-height

Re: [jQuery] Animating text like a cash register

2006-11-22 Thread Glen Lipka
ennies. So that 45.95 becomes 4595. Then do like this... http://blogometer.com/repository/etude/jQuery/discuss/sum-prices/sum.html Divide and modulo by 10 to build your array. * Glen Lipka <[EMAIL PROTECTED]> [2006-11-22 00:51]: > Yes, I would need to do exactly that. > I am workin

Re: [jQuery] Animating text like a cash register

2006-11-21 Thread Glen Lipka
Nuts. I don't need to add them up. I just need to find the highest price. Hmm. I need to think more about how the pricing works in their business model. I still need to translate the number like you described though. Sorry, I am talking out loud, arent I? glen > Not sure I follow. Are yo

Re: [jQuery] Animating text like a cash register

2006-11-21 Thread Glen Lipka
Yes, I would need to do exactly that. I am working now on adding up all the checked boxes using parseFloat to convert them. Is that the best way? They are strings, I guess. When you say, plugin worthy, which are you talking about? Glen Not sure I follow. Are you looking to convert ... var

Re: [jQuery] Animating text like a cash register

2006-11-21 Thread Glen Lipka
Making huge progress, thanks for the suggestions. I did it with a long col of digits using line-height and animate. example: $("#pricingCol1").animate({top: col1 * n }, 500); n being the line-height. I suppose I could detect for the line-height and do it dynamically. Hmm. check out the

Re: [jQuery] input field focus help!

2006-11-16 Thread Glen Lipka
What about $("#whatever")[0].focus(); Glen On 11/16/06, Clodelio Delfino <[EMAIL PROTECTED]> wrote: Thanks Erik for the input but it doesn't work... c",) -Original Message- *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of *Erik Beeson *Sent:* Friday, November 17, 2006

[jQuery] val() to erase the value

2006-11-15 Thread Glen Lipka
When I did this: $("#someInput").val(""); it made it null in FF but in IE it left it alone. How do I use val() to erase the current value? Glen ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery 1.1 by the end of Nov

2006-11-15 Thread Glen Lipka
Just a thought:You could put up a survey online asking:1. What should the maximum size of jQuery be with these modules (list current)?  [enter number]2. Which modules do you think could be abstracted out of the core into plugins to save space? [checkboxes] 3. etc.Of course, this info doesn't make i

Re: [jQuery] How to display error/validation messages?

2006-11-14 Thread Glen Lipka
I didn't mean to open up a can of worms.   I agree with everyone.  The best sites degrade gracefully.  However, I also know that time is often not on my side and I don't have the time to do it right.   The key is Know Thy Audience.  Each has to make up their own minds how to build.   Interesting te

Re: [jQuery] How to display error/validation messages?

2006-11-14 Thread Glen Lipka
I organized the answers inline.  This probably breaks email ettiquette. - Glen   1. Bigger text fields.  Many (most?) users have sketchy vision and flickering monitors.  Make the text boxes bigger and they will be happier.  Same goes for the submit buttons. 2. Have a visual indication next to requ

Re: [jQuery] jQuery sites

2006-11-14 Thread Glen Lipka
In a big corporation, sometimes you have the power of inertia.  I can't find anyone who knows why those sessionIDs are on the link, nor can I find someone willing to change it.  I would rather have a date/time stamp on them.  Oh well.   The site uses ATG.  Intuit is actually REALLY good about test

[jQuery] jQuery sites

2006-11-14 Thread Glen Lipka
Some sites we just launched using jQuery:   1. http://www.payroll.com.  Used jQuery for manipulating the icons on the local nav and creating some visual effects. 2. http://www.intuit.com. Currently running 3 tests.  2 with tons of jQuery and 1 with minimal. (delete cookies and refresh to see) I use

Re: [jQuery] How to display error/validation messages?

2006-11-14 Thread Glen Lipka
http://glenlipka.kokopop.com/jQuery/inlineError.htm This was an early prototype for what is now currently live on all of Intuit's websites.   From a UX design standpoint, here are some guidelines: 1. Bigger text fields.  Many (most?) users have sketchy vision and flickering monitors.  Make the text

Re: [jQuery] Refresh an image with dynamic src URL?

2006-11-13 Thread Glen Lipka
Is this not working for you? $("img.whatever").attr("src","newurl.gif");   Glen  On 11/13/06, Matt Grimm <[EMAIL PROTECTED]> wrote: What would be an ideal way to refresh an image whose src attribute is ascript that dynamically generates the image? Would it be best to store the value of the src attr

Re: [jQuery] new jQuery API draft

2006-11-13 Thread Glen Lipka
In IE6, when clicking on a link on the left, it scrolls down on the right, but you can no longer see the links on the left. The right side doesn't have the overflow on it correctly.  FF works properly though.   Glen  On 11/13/06, Christopher Jordan <[EMAIL PROTECTED]> wrote: Chris W. Parker wrote:

Re: [jQuery] Text pointer to hand pointer on MouseOver...

2006-11-13 Thread Glen Lipka
("#whatever").css("cursor","pointer")   Or put it in the CSS. whatever{ cursor: pointer  }  Glen  On 11/13/06, Laurent Yaish <[EMAIL PROTECTED]> wrote: try setting the CSS cursor property http://www.w3schools.com/css/pr_class_cursor.aspLaurent On 11/13/06, Rick Faircloth < [EMAIL PROTECTED]> wrote

Re: [jQuery] Tabs: reworked fxAutoHeight, what's next on the list

2006-11-13 Thread Glen Lipka
I just looked at your URL in MSIE 6.  It threw a JS error. Line 39. null is null or not an object. In MS Screipt Editor is highlights this code: event.target=event.srcElement  Glen   On 11/13/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: KlausSomething unexpected -- with IE6/WinXP every transiti

Re: [jQuery] new jQuery API draft

2006-11-10 Thread Glen Lipka
You might want to put a border or hr or spacing between each function.They run together right now.If I wanted to print one part of the API, is this possible with the current design?Maybe just have the single API appear on the right instead of scrolling down and another link to "show all"? Just a th

[jQuery] ThickBox mod: zoom

2006-11-05 Thread Glen Lipka
I am working on a ThickBox implementation here: http://glenlipka.kokopop.com (click samples of work).Trying to add in a zoom function.  I guess it should work just like prev or next, except I would need to change the URL to 123b.gif instead of 123a.gif.Has anyone done anything like this with thick

[jQuery] Redraw using Ajax

2006-11-05 Thread Glen Lipka
I am updating my personal homepage using jQuery. I am loading all the main content via $load().  When it first loads, it looks like it draws twice. How can I avoid this?   http://glenlipka.kokopop.com   Using: jQuery 1.0.3, ThickBox 2.1, History Plugin.  I modified the History just a little.  I hop

Re: [jQuery] Sneak Peek and Hover question

2006-11-03 Thread Glen Lipka
This worked perfectly by the way.  Thank you so much! :)   Glen  On 10/27/06, abba bryant <[EMAIL PROTECTED]> wrote: Just a quick note. When you hit the "quick links" button I get an annoyinghorizontal shift in FF. You can fix with the following css rulehtml { height:100%; margin-bottom:1px; }It wi

Re: [jQuery] jQuery 1.0.3 compressed - file header missing

2006-11-03 Thread Glen Lipka
I agree.  Especially with a large group of people all working in CVS (and overwriting each other's files with merges etc).  It's nice to be able to just look at the file and see immediately through the browser.  I often don't have access to the source.   It's also good advertising/communication fo

Re: [jQuery] Sneak Peek and Hover question

2006-10-27 Thread Glen Lipka
06, at 6:33 PM, Blair McKenzie wrote: This approach stops load time by including hover and unhover backgrounds in the same graphic. This other one uses css to preload the hover image. Blair On 10/28/06, Glen Lipka < [EMAIL PROTECTED] > wrote: I think that technique is called double-buffering. 

Re: [jQuery] Sneak Peek and Hover question

2006-10-27 Thread Glen Lipka
.GlenOn 10/27/06, Blair McKenzie <[EMAIL PROTECTED]> wrote: This approach stops load time by including hover and unhover backgrounds in the same graphic. This other one uses css to preload the hover image.BlairOn 10/28/06, Glen Lipka < [EMAIL PROTECTED] > wrote:I think that tech

Re: [jQuery] Sneak Peek and Hover question

2006-10-27 Thread Glen Lipka
ut it looks the> same in both browsers. This is easily avoided by preloading the images. >> --Erik>> On 10/27/06, *Glen Lipka* <[EMAIL PROTECTED] [EMAIL PROTECTED]>>> wrote:> > http://glenlipka.kokopop.com/jQuery/payroll/> http://glenlipka.kokopop.com/jQu

[jQuery] Sneak Peek and Hover question

2006-10-27 Thread Glen Lipka
http://glenlipka.kokopop.com/jQuery/payroll/http://glenlipka.kokopop.com/jQuery/intuit/Ok, here is my problem, and it's on both pages. Mouse over the tabs in the middle on either one using IE 6.  HORRIBLE flickering problem.I wasn't using $hover().  I tried a few different things.  Single image hov

Re: [jQuery] Visual jQuery Announcement

2006-10-27 Thread Glen Lipka
Still a bug on prev(expr).  The example says previous() not prev()   I agree with the request to link to a specific API node.  It has been hard for me to point someone to a specific function.  It would be an awesome improvement to either the API in jQuery or visual jQuery.   Glen  On 10/27/06, Barr

Re: [jQuery] Trouble width height on slideDown

2006-10-26 Thread Glen Lipka
I had the exact same problem.  It doesn't happen when you use show() or change the timing to zero, slideDown(0).  That 219 bug is important. I heard it was fixed in 1.0.2 but it wasn't.I also tried to change the height after it finished the slideDown and that didn't work either. Any ETA on bug #219

Re: [jQuery] Get element ID

2006-10-21 Thread Glen Lipka
Not sure if it makes a difference..but I think this would work too   $(document).ready(function() {      $("td").click(function() {            var id = $(this).attr("id");          // now do stuff with id!      }); }); I guess this.id is shorter.  The interesting thing to me is to try and avoid IDs

Re: [jQuery] Setting Height in FF

2006-10-18 Thread Glen Lipka
Ugh.  Thank you!GlenOn 10/18/06, nezza <[EMAIL PROTECTED]> wrote: Glen,You need to append the "px" on the end.A call to $("#right").height(); simply returns the integer, to set height,according to the API, you need the "px":
$(document).ready(function() {

   var rightHeight = $("#rig

[jQuery] Setting Height in FF

2006-10-18 Thread Glen Lipka
I am having some trouble in FF 1.5.0.7 on Win XP.It works in IE but not in FF.  Am I doing this wrong?  Is there a workaround?GlenCode Snippet:
$(document).ready(function() {
Re: [jQuery] Groups, Forums
le.com/JQuery-f15494.html On 10/16/06, Glen Lipka < [EMAIL PROTECTED]> wrote: I was trying to show a developer friend the thread about the API Discussion.  The online archives make it difficult to follow the thread from start to finish.  I think this mailing list is getting pretty popular and a

[jQuery] Groups, Forums

I was trying to show a developer friend the thread about the API Discussion.  The online archives make it difficult to follow the thread from start to finish.  I think this mailing list is getting pretty popular and a forum would make discussions much more targeted.  Many forums have email hooks bu

Re: [jQuery] jQuery API discussion

Let's assume you are going to do 'something' that makes jQuery better but changes the API. What is the suggested way to bind a click function or a toggle function NOW so we don't have to change later?   I'd rather change now before things go live. :)   Glen  On 10/15/06, Jörn Zaefferer <[EMAIL PROT

Re: [jQuery] IE debug tool

I use the Microsoft Developer Toolbarhttp://www.microsoft.com/downloads/details.aspx?FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&displaylang=en in conjunction with Microsoft Script Editor (not debugger).  The script editor let's me free form play with the jQuery object.Ive tried debugbar before a

Re: [jQuery] Google suggest example or plugin?

I can't seem to get it to work in IE7, but this was supposed to do that. http://interface.eyecon.ro/docs/autocomplete   This one too http://www.dyve.net/jquery/?autocomplete  On 10/11/06, Rey Bango <[EMAIL PROTECTED]> wrote: I'm looking for Google suggest style functionality and wanted to know ift

Re: [jQuery] Attach a Style Sheet

I tried to make it jQuery("")but that didn't seem to work (was looking in IE).  The other one with jQuery(document.createElement("link") did work.What is the difference between jQuery() and $().  Why should you use one over the other? GlenOn 10/10/06, kenton.simpson <[EMAIL PROTECTED]> wrote: Thank

  1   2   >