[jQuery] Re: IE 7(mostly likey all 6 too) issue with added content with javascript dynamically

2007-09-10 Thread Glen Lipka
that should when it is parsed. Glen Lipka wrote: Have you tried the Live jQuery plugin? I'm not sure if this is applicable for your needs. Glen On 9/10/07, Eridius [EMAIL PROTECTED] wrote: I have a script that reorder some content an this content includes javascript

[jQuery] Re: New Plugin: ZoomBox

2007-09-09 Thread Glen Lipka
Great start! It would be cool to add in the keyboard mappings to go to the next image. Or escape to send it back down. Awesome work! Glen On 9/9/07, weepy [EMAIL PROTECTED] wrote: Inspired by EaseBox and Highslide, I made this plugin

[jQuery] Re: N00b = jQuery getElementsByName Equivalent ?

2007-09-07 Thread Glen Lipka
Yes, jQuery supports xPath like expressions like: $(div[name=foo]) You can put any attribute/value in there. Its pretty flexible. The 1.2version also has neat variations on this. See detail: http://docs.jquery.com/JQuery_1.2_Roadmap#Move_from_.5B.40attr.5D_to_.5Battr.5D Also, check out this

[jQuery] Re: How to fade only the background?

2007-09-07 Thread Glen Lipka
One thing I have done in the past for the same problem is to use absolute positioning. I put two divs as siblings inside a parent div. They are both top: 0px; left: 0px; position: absolute. The parent is position: relative. The first sibling is the background and the second one is the logo.

[jQuery] Re: jQuery getElementsByName Equivalent ?

2007-09-07 Thread Glen Lipka
There seems to be two threads with the same question. Repeating answer: Yes, jQuery supports xPath like expressions like: $(div[name=foo]) You can put any attribute/value in there. Its pretty flexible. The 1.2version also has neat variations on this. See detail:

[jQuery] Re: My freelance site, a question about redundant code...

2007-09-07 Thread Glen Lipka
Its an interesting effect. I like it. A little weird at first, like Where is the page? but I got it pretty quickly. Have you tried to use a custom implementation of Tabs to do this? The benefit is that the back button would continue to work. Plus it already has the animation to do what you

[jQuery] Re: New jQuery Docs require more work to use

2007-09-07 Thread Glen Lipka
I agree. I think the powers that be are working on an iframe that will compile those tabs into a single running demo. It should also have all that information compiled together. Additionally, it will be a working demo to show how it translates into action. I've been working on making the demos,

[jQuery] Re: Expanding a sub-tree - obtaining the path to a node/tag

2007-09-07 Thread Glen Lipka
How about this? (in the open function) $(this).parents(ul).show(); Glen On 9/7/07, Pops [EMAIL PROTECTED] wrote: I have a tree list and when I toggle a deep item to expand/show, I want all its parents to expand as well. What selector or method will give me this? I guess this is

[jQuery] Re: Image rollover plugin?

2007-09-06 Thread Glen Lipka
Could you be a little more specific? Maybe show a page that has the kind of effect you are looking for? I think the answer is Yes, but you need to be more specific, there are alot of different variations. You may not need a plugin at all. Glen On 9/6/07, howa [EMAIL PROTECTED] wrote:

[jQuery] Re: 1.1.4 Bug: IE7, TD, append element

2007-09-06 Thread Glen Lipka
Why are you nesting appends like that? You might be interested in the FlyDom plugin. It does this sort of thing easier. http://jquery.com/plugins/project/FlyDOM He has examples on this page: http://dohpaz.mine.nu/jquery/jquery.flydom.html It shows specifically the creation of a table. Glen On

[jQuery] Re: Image rollover plugin?

2007-09-06 Thread Glen Lipka
This seems like massive overkill to me. What's wrong with the hover function in the core API? Glen On 9/6/07, Michael Stuhr [EMAIL PROTECTED] wrote: howa schrieb: Something like what dreamweaver provide, are there such as plugin in jQuery? Thanks. function onMouseOver () {

[jQuery] Re: Image rollover plugin?

2007-09-06 Thread Glen Lipka
[EMAIL PROTECTED] wrote: Glen Lipka schrieb: This seems like massive overkill to me. What's wrong with the hover function in the core API? and how would that look like ? as i already said: if you plan wisely i think all you need is css. just wanted to give an understandable example

[jQuery] Re: i think you can all see what i'm trying to do here - two-tier navigation with jquery...

2007-09-06 Thread Glen Lipka
I whipped up a demo. http://www.commadot.com/jquery/hoverIntent/menu.htm Some pointers: 1. You only need one ready block. No need to make one for every single call. 2. Use CSS classes. Avoid ID's. jQuery is much easier to work with when your page has no ID's on it. CSS is super powerful.

[jQuery] Re: i think you can all see what i'm trying to do here - two-tier navigation with jquery...

2007-09-06 Thread Glen Lipka
Glad we could help. The code I whip up is meant to be used, so go for it. All I ask in return is good karma. Oh, and if you feel that jQuery saved you time and money, always consider a small donation to the project. (I think Rey might have set up a donate and get a mug program) Glen PS.

[jQuery] Re: i think you can all see what i'm trying to do here - two-tier navigation with jquery...

2007-09-06 Thread Glen Lipka
Yes, I was advocating simplicity of markup and simplicity of code. Speed on a page like this is sort of meaningless. (8ms or 38ms - neither of which is slower than an eye blink) Even so, I would say 5 ID calls might be slower than 1 class call calling 5 objects. Its certainly uglier in the code.

[jQuery] Re: i think you can all see what i'm trying to do here - two-tier navigation with jquery...

2007-09-05 Thread Glen Lipka
Maybe make a DIV that contains the whole menu system (global/secondary). Bind the mouseover to the global choices to 1. hide everything in secondary and then 2. show the corresponding links. Then bind the mouseout to the global div surround the whole thing to hide all the secondary items. You may

[jQuery] Re: bassistance: jQuery plugin: Autocomplete

2007-09-05 Thread Glen Lipka
This is so awesome. Seriously. Awe-some. Has this been put into the plugin thinger. I want to give it 5 stars. Glen On 9/5/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Marto schrieb: I have been playing with this Autocomplete plug-in, what can I say, fantastic. I have noticed one thing

[jQuery] Re: bassistance: jQuery plugin: Autocomplete

2007-09-05 Thread Glen Lipka
Feature request for Autocomplete. See how Gmail allows you to autocomplete on multiple choices in one textbox. Each address separated by the comma or semi-colon. Otherwise, this is a great plugin! Glen On 9/5/07, Glen Lipka [EMAIL PROTECTED] wrote: This is so awesome. Seriously. Awe-some

[jQuery] Re: bassistance: jQuery plugin: Autocomplete

2007-09-05 Thread Glen Lipka
ugh, this is so awesome. Glen On 9/5/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Glen Lipka schrieb: Feature request for Autocomplete. See how Gmail allows you to autocomplete on multiple choices in one textbox. Each address separated by the comma or semi-colon. Otherwise

[jQuery] Re: Feeling pretty special right about now...

2007-09-04 Thread Glen Lipka
jQuery store might be a nice way to get donations. Donate $25 and get a mug. $50 and get a t-shirt. etc Like NPR. Glen On 9/4/07, Sean Catchpole [EMAIL PROTECTED] wrote: /drool ~Sean On 9/4/07, Rey Bango [EMAIL PROTECTED] wrote: Yep, I'm feeling pretty special right about now with

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-04 Thread Glen Lipka
I see no merchandise on that link. Glen On 9/4/07, Rey Bango [EMAIL PROTECTED] wrote: Okay, so it seems like you guys want the cool jQuery merchandise I showed you. Well, you can now buy it at the jQuery Cool Stuff store: http://www.cafepress.com/jquery That's right, the same cool mug

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

2007-08-31 Thread Glen Lipka
http://kawika.org/jquery/checkbox/ Try this one. Glen On 8/31/07, cfdvlpr [EMAIL PROTECTED] wrote: I'd be interested in this as well.

[jQuery] Re: AJAX GetElementByID problem

2007-08-31 Thread Glen Lipka
I meant, where is the jQuery in your code. It looks like straight Javascript. The message from Pops has jQuery. Did that fix the error? Glen On 8/30/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi Glenn, If you are asking where the script to include the js for jquery is, it is located

[jQuery] Re: Find values

2007-08-30 Thread Glen Lipka
Seems they are all children of their individual TR tag right? What is the event you are listening for? If its an ajax table you will need to bind the events using the Live jQuery plugin. Then once you have an event you are listening for you probably will have something like: var parentTR =

[jQuery] Re: Release: Accordion 1.5

2007-08-30 Thread Glen Lipka
In the real world, things dont always happen instantly. A sliding door (like on Star Trek) opens with a whoosh. I am sure they could have built a door shield that was opened instantly rather than a whooshing door. Especially with their futuristic technology. However, people like the whoosh.

[jQuery] Re: AJAX GetElementByID problem

2007-08-29 Thread Glen Lipka
Where is the jQuery? Glen On 8/29/07, Kevin [EMAIL PROTECTED] wrote: Hi All, I'm trying to use an ajax call to call a 2nd page which uses a getElementByID to set a div's content on that page. If I just try to call the 2nd page, I get a js error that I can't run the getElementByID

[jQuery] Re: jQuery beginer in search of magic...

2007-08-28 Thread Glen Lipka
script. target.empty().append(img src=' + bigImage + ' /); ( missing), don't bother try to find out anymore about this. thanks again. On Aug 27, 4:59 pm, Glen Lipka [EMAIL PROTECTED] wrote: Something like this?http://www.commadot.com/jquery/easebox/imageRows.php You can add

[jQuery] Re: removeClass from *any* element

2007-08-28 Thread Glen Lipka
try $(*).removeClass(redText); or $(* *).removeClass(redText); Glen On 8/28/07, Shelane [EMAIL PROTECTED] wrote: I apply a class called RedText to items I need to make stand out to the user. I want to be able to globally remove the class from any and all elements on my page within a

[jQuery] Re: jQuery beginer in search of magic...

2007-08-28 Thread Glen Lipka
//prevent default link action event.preventDefault(); }); }); or there: http://kosmonot.bl1nd.com/j/jq001.js http://kosmonot.bl1nd.com/gal_5.html cheers On Aug 28, 3:18 pm, Glen Lipka [EMAIL PROTECTED] wrote: So you are all set? If possible, post your final code

[jQuery] Re: OT CSS skins

2007-08-27 Thread Glen Lipka
Using sprites would also solve that problem. I am surprised that he didn't. Glen On 8/27/07, Andy Matthews [EMAIL PROTECTED] wrote: Very nice. Wish he would have put some preload code in there so that you didn't get the odd flicker the first time you mouse over the menu. Other than that, it

[jQuery] Re: jQuery beginer in search of magic...

2007-08-27 Thread Glen Lipka
Something like this? http://www.commadot.com/jquery/easebox/imageRows.php You can add in the easing plugin to get fancier effects. Maybe even the pause plugin to control the timing super specifically. Glen On 8/27/07, Glen Lipka [EMAIL PROTECTED] wrote: Its a little hard to follow exactly

[jQuery] Re: Cross-Domain xmlHttp

2007-08-27 Thread Glen Lipka
Brad Neuberg had developed this thing called Purple Include. http://codinginparadise.org/weblog/labels/purple%20include.html I don't know if it's a good idea or not but its very interesting and achieves this goal. Glen On 8/27/07, Pops [EMAIL PROTECTED] wrote: Hogsmill, The idea is simple,

[jQuery] Re: How to Inject style sheets/.CSS

2007-08-25 Thread Glen Lipka
heh. It's late. Sorry. :) Glen On 8/24/07, Erik Beeson [EMAIL PROTECTED] wrote: Not sure. I wonder what would happen if you made a style node and appended html into it. Isn't that what I suggested he do? --Erik

[jQuery] Re: New Plugin: Live Query (previously called Behavior)

2007-08-25 Thread Glen Lipka
I was just thinking. We should combine the live query plugin with the PNGFix plugin, so that dynamically added PNGs would get fixed. Really important for Ajax Apps. Glen On 8/19/07, Brandon Aaron [EMAIL PROTECTED] wrote: Some of you may be familiar with Behavior. It was a first attempt at

[jQuery] Re: jQuery 1.1.4: Faster, More Tests, Ready for 1.2

2007-08-24 Thread Glen Lipka
I dont quite understad how the slice() feature works. I am assuming this is zero based. So let's say I had 10 DIVs. 0 1 2 3 4 5 6 7 8 9 What does the first and second number in the parens mean? Apparently you do not need to have both. And negative numbers mean something. Maybe someone

[jQuery] Re: jQuery's Fearless Leader on Ajaxian

2007-08-24 Thread Glen Lipka
This one threw me. script src=filename.js tags should be placed as late in the body as possible. This reduces the effects of delays imposed by script loading on other page components. There is no need to use the language or typeattributes. It is the server, not the script tag, that determines the

[jQuery] Re: How to Inject style sheets/.CSS

2007-08-24 Thread Glen Lipka
jQuery(document.createElement(link)) .attr({type: text/css,href: globalHeader.css,rel:stylesheet}) .appendTo(head); This works too. Glen On 8/24/07, Erik Beeson [EMAIL PROTECTED] wrote: This seems to work in FF2/Mac: var myCss = 'p { border: 2px solid #faa; }'; $(head).append('style

[jQuery] Re: How to Inject style sheets/.CSS

2007-08-24 Thread Glen Lipka
I'm sorry, I misread. This is to attach a new sheet. You want to make the rules available to the page right away, like a style block. Hmm. Not sure. I wonder what would happen if you made a style node and appended html into it. Glen On 8/24/07, Glen Lipka [EMAIL PROTECTED] wrote: jQuery

[jQuery] Re: How do i group events?

2007-08-23 Thread Glen Lipka
Not exactly sure what you are trying to do. Are you trying to have 2 separate click events, like this: http://www.commadot.com/jquery/events/multipleEvents.htm Or are you trying to unbind the original event? Like this? $(p).unbind( click ) Or something else? Glen On 8/23/07, Estevão Lucas

[jQuery] Re: [ANNOUNCE] LavaLamp for jQuery lovers released!

2007-08-23 Thread Glen Lipka
This is an awesome effect, with tons of room for customization. I have to use it somewhere. Hmm, Question, could it be made to run vertically as well as horizontally? I have a few vertical nav bars that it would still be very nice. Thanks for mentioning me in the docs, but really, it was just 10

[jQuery] Re: [ANNOUNCE] LavaLamp for jQuery lovers released!

2007-08-23 Thread Glen Lipka
be the next logical thing. Version 2.0 coming soon! -- *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Glen Lipka *Sent:* Thursday, August 23, 2007 11:35 AM *To:* jquery-en@googlegroups.com *Subject:* [jQuery] Re: [ANNOUNCE] LavaLamp for jQuery

[jQuery] Re: Multiple Select Select Box

2007-08-23 Thread Glen Lipka
Could you be more specific? select name= size=3 multiple=multiple option value=1One/option option value=2Two/option option value=3Three/option /select Working with this kind of listbox is the same as working with a normal one. What functionality are you looking for? Glen On 8/23/07,

[jQuery] Re: Pop up with time delay

2007-08-23 Thread Glen Lipka
There is a great (tiny) plugin called Pause. http://blog.mythin.net/projects/jquery.php (This is the record for most spartan plugin page). Use pause and then pop after a few seconds. Are you using BlockUI or jQModal to do the popups? www.malsup.com/*jquery*/block/

[jQuery] Re: Clear element's style in IE?

2007-08-23 Thread Glen Lipka
Try removeAttr(style) Untested. Glen On 8/23/07, Jonathan Sharp [EMAIL PROTECTED] wrote: I'm using this to clear an element's style (as set by developer's) and it works great in FF but not IE. Any thoughts? $('[EMAIL PROTECTED]').attr('style', ''); Cheers, -js

[jQuery] Re: putting value to html from a php script

2007-08-23 Thread Glen Lipka
I am not totally sure how get() works. (Im lame) However, I am pretty sure load() works for you in this case. Like: $(#targetDiv).load(totals.php); The first part needs to know where to put the output of the PHP. Glen On 8/23/07, Rotsen [EMAIL PROTECTED] wrote: I am new to this group and

[jQuery] Re: Prechecking the browser before loading jQuery

2007-08-21 Thread Glen Lipka
jQuery has some built-in browser agent tools: From http://jquery.com/api $.browser returns Boolean Contains flags for the useragent, read from navigator. Contains flags for the useragent, read from navigator.userAgent. Available flags are: safari, opera, msie, mozilla This property is available

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-08-20 Thread Glen Lipka
I got that error in IE7, but not in FF. RE: Perceived speed. The way john fixed it is accurate in terms of speed/time, which means the other one is not accurate. Most animations are only 1 or a couple of elements, so this distortion shouldn't be noticeable. Nothing to do, just interesting to

[jQuery] Re: Avoiding anonymous functions - enhancement suggestion

2007-08-17 Thread Glen Lipka
I cant comment on the merits of the technical aspects, but I do appreciate Matt's desire to simplify and to suggest possible alternatives. This isn't a love-it-or-leave-it community. We actively discuss ideas for changing the base code. I think slamming ideas is a bad practice. It might not

[jQuery] Re: Optimization Help

2007-08-17 Thread Glen Lipka
I whipped up a demo. http://www.commadot.com/jquery/forms/all.htm var regularBoxes = $([EMAIL PROTECTED]).not(#allToggle); $(#allToggle).click(function(){ if ($(#allToggle).attr(checked) == true) { regularBoxes.removeAttr(checked); } }); regularBoxes.click(function(){

[jQuery] Re: Best tooltip plugin

2007-08-17 Thread Glen Lipka
Dont forget this one. ClueTip http://examples.learningjquery.com/62/demo/ Glen On 8/17/07, Andy Matthews [EMAIL PROTECTED] wrote: Look on Bassistance...the fancy example with the drop shadow. When you move the mouse around, the tooltip follows you. The one you're using on GotCFM is fixed.

[jQuery] Re: jQuery negatives: dual/triple/quadruple special-case uses for both function calls and method names

2007-08-16 Thread Glen Lipka
As a non-programmer, (HTML/CSS only) I understand lt() and gt() mainly because of lt; and gt;. I think those are very easy. The place I get confused a little is when you can say $(p:gt(4)) and $(p).gt(4) and get the same thing. Why both? I suppose the answer is because some people like it one

[jQuery] Re: question about selectors

2007-08-15 Thread Glen Lipka
Ooops; sorry, i forgot one part. $(table).filter(table:lt(2)).find(tr td:first-child).css(border,3px solid red); Thanks John, first-child worked perfect. Glen On 8/15/07, Glen Lipka [EMAIL PROTECTED] wrote: Whipped up a demo http://www.commadot.com/jquery/selectors/tableCount.htm

[jQuery] Re: [ANNOUNCE] tablesorter 2.0 released

2007-08-15 Thread Glen Lipka
The widget system looks very interesting. I haven't heard of a plugin for a plugin yet. Blazing a new trail! Nice work! Glen On 8/15/07, Chris W. Parker [EMAIL PROTECTED] wrote: On Wednesday, August 15, 2007 4:38 PM Christian Bach said: Hi List, I just released the 2.0 version of

[jQuery] Re: next anchor tag in list

2007-08-14 Thread Glen Lipka
Where are the links? You just have the path? You can get an href value with the attr() function. $(a).attr(href) will return the value inside an a href parameter. You can also get the next link with the next function $(1).click( function() { alert($(this).next(a).attr(href); } ); This might

[jQuery] Re: next anchor tag in list

2007-08-14 Thread Glen Lipka
Maybe post the example online somewhere. Strange though, I can write a link a href=/blah.htmfoo/a Glen On 8/14/07, Alex Ezell [EMAIL PROTECTED] wrote: Looks like Nabble is eating the HTML when you post from there. /alex On 8/14/07, b0bd0gz [EMAIL PROTECTED] wrote: Sorry about that

[jQuery] Re: fancy menu - tell me what you guys think

2007-08-14 Thread Glen Lipka
Its a great effect and will make a great plugin. I love it. Are you hard-coding the easing or allowing options? I saw a little bit of strangeness in the first load, when only the right-side of the button showed up. One suggestion. Use a button sprite to have the caps and the body as part of the

[jQuery] Re: next anchor tag in list

2007-08-14 Thread Glen Lipka
Ahh, ok. $(a.next).click( function() { alert( $(ul.thumbs a.selected ).parent().next(li).children(a:first).attr(href) ); I think this could be more succinct, but it works. Glen On 8/14/07, b0bd0gz [EMAIL PROTECTED] wrote: Here's a link to the html

[jQuery] Re: fancy menu - tell me what you guys think

2007-08-14 Thread Glen Lipka
: function(){ move(this); }, out: noop }); Brian. On 8/14/07, Glen Lipka [EMAIL PROTECTED] wrote: Its a great effect and will make a great plugin. I love it. Are you hard-coding the easing or allowing options? I saw a little bit of strangeness in the first load, when only

[jQuery] Re: input type=button / : which event is that?

2007-08-14 Thread Glen Lipka
Selected or clicked? It fires the click event even if you use spacebar while focused on it. It fires focus when you tab onto it or click on it. Glen On 8/14/07, lukek [EMAIL PROTECTED] wrote: Is there an specific event raised when a button (input type=button) is selected? Or am I being a

[jQuery] Re: resetting an event

2007-08-14 Thread Glen Lipka
Maybe use the HoverIntent() plugin and fire the onmouseout event manually? Glen On 8/14/07, insmac [EMAIL PROTECTED] wrote: Hello, Let's say I have an ordinary hover action triggered by mouse. It fires an event when the curson is over the particular div an its position is steady for a

[jQuery] Re: fancy menu - tell me what you guys think

2007-08-14 Thread Glen Lipka
of this rounded box idea: http://meta20.net/demos/Smooth_menu_widget_for_jQuery/ Brian. On 8/14/07, Glen Lipka [EMAIL PROTECTED] wrote: Ok, I made the sprite for you with css. http://www.commadot.com/jquery/lavalamp/ This will make it load the bubble all at once. I also

[jQuery] Re: focus with DIVs

2007-08-14 Thread Glen Lipka
Interestingly (or not), IE allows you to put a tabindex= on a div which will put it in the queue to gain focus. It fires the event properly. Firefox doesn't seem to allow this. Glen On 8/14/07, Mitchell Waite [EMAIL PROTECTED] wrote: Hi gang Is there a way to use focus with a div rather

[jQuery] Re: Clear input fields for login form

2007-08-14 Thread Glen Lipka
Two plugins that do that. Not sure the better term, Overlabel or Watermark. http://digitalbush.com/projects/watermark-input-plugin http://scott.sauyet.com/Javascript/Demo/Overlabel/ Glen On 8/14/07, sccr410 [EMAIL PROTECTED] wrote: Im trying to replicate the login form on the home page of

[jQuery] Re: Got Grid? Here's a large plugin effort.

2007-08-13 Thread Glen Lipka
We had a test a while back that was changing a CSS class versus a series of dom elements. http://www.sunsean.com/animatetest.html I was thinking about your column resizing. Maybe this technique would improve the speed of the column resize? Maybe even show the whole column sizing dynamically. I

[jQuery] Re: Animating scrollLeft

2007-08-13 Thread Glen Lipka
Try this demo. http://dev.jquery.com/~john/ticket/step/test2.html You can include the easing plugin to get different kinds of effects. http://gsgd.co.uk/sandbox/jquery.easing.php Glen On 8/12/07, interfaced [EMAIL PROTECTED] wrote: Is there a way to take this scrolling functionality and use

[jQuery] Re: jQuery and blogrolls

2007-08-13 Thread Glen Lipka
Ideas: 1. a tree with folders http://bassistance.de/jquery-plugins/jquery-plugin-treeview/, 2. a scrollable area http://www.learningjquery.com/2006/10/scroll-up-headline-reader (broken, but the fix is mentioned in the article) 3. Google Suggest - http://jquery.bassistance.de/autocomplete/ I think

[jQuery] Re: scollovers animation

2007-08-13 Thread Glen Lipka
I sort of find it distracting. Imagine a page of 50 links all spread out in the text (like wikipedia). Moving the mouse around with cause all this animation. Maybe use the hoverIntent() plugin? It would solve this issue I think. Glen On 8/13/07, Txt.Vaska [EMAIL PROTECTED] wrote: wish i

[jQuery] The Right Sprite

2007-08-11 Thread Glen Lipka
Ive been experimenting with icon sprites. Specifically how to manage them for a RIA that has many many icons with several states. Check out my findings here: http://commadot.com/?p=590 A little jQuery help would be good for this page: http://www.commadot.com/jquery/sprites/78div.htm Is there a

[jQuery] Re: Create excel file from table data

2007-08-10 Thread Glen Lipka
On 8/9/07, polyrhythmic [EMAIL PROTECTED] wrote: Glen: Excel will parse pure html tagged as an xls? If it's easier than .CSV converting, I have to implement this for a customer. Yes. Specifically a table. You can even add CSS backgrounds, and borders which Excel picks up too. (Assuming the

[jQuery] Re: Create excel file from table data

2007-08-09 Thread Glen Lipka
the format of the html can be a regular old TBALE tag. To have it point to Excel you need to change the headers. In php: ?php header(Content-type: application/vnd.ms-excel; name='excel'); header(Content-Disposition: filename=export.xls); header(Pragma: no-cache); header(Expires: 0); Glen On

[jQuery] Re: Create excel file from table data

2007-08-09 Thread Glen Lipka
for Excel file creation, the problem is that, the result file is not editable. If you try edit this file in Excel, requires to save as other native file. Glen Lipka escribió: the format of the html can be a regular old TBALE tag. To have it point to Excel you need to change the headers

[jQuery] Re: Slightly OT: overview of HTML5 elements

2007-08-09 Thread Glen Lipka
What browsers will support this? Will IE8? or FF3? Seems like 5+ years before I can use any of it. Glen On 8/9/07, Benjamin Sterling [EMAIL PROTECTED] wrote: Yeah, I was going to post that this morning to see what everyones take was going to be on that. Not exactly sure how I feel about it

[jQuery] Re: [Slight OT] Quick straw pole about maps

2007-08-08 Thread Glen Lipka
I never use Yahoo. I use Google for general quick maps and directions. I use http://local.live.com for the birds-eye-view. That view is ridiculously crazy. It sounds like a good idea to go for just one map source and make it more feature rich. Glen On 8/8/07, Tane Piper [EMAIL PROTECTED]

[jQuery] Re: Keyword Search for Plugin Repository

2007-08-07 Thread Glen Lipka
I agree. In the meantime, try google with the site tool. Like search for accordion site:http://jquery.com/plugins/ Glen On 8/7/07, jason [EMAIL PROTECTED] wrote: The new plugin repository is great, but it's in dire, dire need of a keyword search feature. - jason

[jQuery] Re: Noob syntax question re toggle between css attributes

2007-08-07 Thread Glen Lipka
You may want to check out the Toggle function. It might eliminate the need for the IF. Maybe even the toggleClass() method? http://www.jquery.com/api $(.doSetSelect).toggle(function(){ $(this).parents(.def_set).addClass(selected); },function(){

[jQuery] Re: Add class to specific list items

2007-08-07 Thread Glen Lipka
Even though Ive been using jQuery for a while, I still go to this page all the time. http://docs.jquery.com/Selectors I can't remember all of it by heart. :) Near the bottom is has one like the one you wanted, $(p:gt(2)) So we just change it a little to $(li:gt(7)) and you got it. In terms of

[jQuery] Re: Toggle visibility on an entire table column?

2007-08-07 Thread Glen Lipka
I had an existing demo that was really close to that. I modified it here. http://www.commadot.com/jquery/selectors/lastTD.htm The answer I have is td:last in an each. Glen On 8/7/07, Andy Matthews [EMAIL PROTECTED] wrote: I haven't tried this yet but is it as simple as assigning some sort

[jQuery] Re: Noob syntax question re toggle between css attributes

2007-08-07 Thread Glen Lipka
(1,2,3) which is odd but I'm sure there's an explanation... Of course this is all moot if the lovely toggle thingie does all the legwork for you:-) Thanks for you help :-) Dug On Aug 7, 3:24 pm, Glen Lipka [EMAIL PROTECTED] wrote: You may want to check out the Toggle function. It might

[jQuery] Re: [Announce] jQuery-powered site featured on ajaxian.com

2007-08-07 Thread Glen Lipka
today: http://ajaxian.com/archives/marketo-marketing-automation from the entry: The tool itself is very rich, and offers first class usage of Ext JS and jQuery The jQuery Project's very own Glen Lipka is the UX guru at Marketo (you can tell by the big buttons on the home page

[jQuery] Re: [Announce] jQuery-powered site featured on ajaxian.com

2007-08-07 Thread Glen Lipka
firebug: unterminated string literal MktPage.init(prod_td, [EMAIL PROTECTED], rob O would continue as: 'Rourke should I try again and escape it this time? Cheers, Rob Glen Lipka wrote: Wow, I didnt even know it was there! I emailed them like a month ago. Thanks Karl for pointing it out

[jQuery] Re: Jquery native HTML editor

2007-08-07 Thread Glen Lipka
Some discussions on the topic: http://groups.google.com/group/jquery-ui/browse_thread/thread/5423ce211fd9e6b Glen On 8/7/07, voltron [EMAIL PROTECTED] wrote: Hi all, I would like to know if progress has been made on the Jquery native HTML editor, can one use it production code? Where can

[jQuery] Re: Click counter

2007-08-06 Thread Glen Lipka
If its in a database, then you need to use AJAX to ping something server-side inside the click function. $(p).click( function() { // ajax call to addOneToTheDatabase.php } ); Glen On 8/6/07, ROME [EMAIL PROTECTED] wrote: Hi, I would like to know if someone try to make Click (link)

[jQuery] Re: Getting prev siblings

2007-08-06 Thread Glen Lipka
It would help if you put up a skeleton page somewhere to demonstrate the challenge. :) Glen On 8/6/07, DaveG [EMAIL PROTECTED] wrote: Is there a way to get the previous sibling of a specific class in the DOM (a) at the same level as the start point, and (b) at lower levels? .prev appears

[jQuery] Re: New to jquery, adding/modify option box in a select block

2007-08-05 Thread Glen Lipka
There is a plugin that makes that pretty easy. http://www.texotela.co.uk/code/jquery/select/ Does it do the kinds of things you are looking for? Glen On 8/4/07, Steve Finkelstein [EMAIL PROTECTED] wrote: Hi all, Given the enthusiasm of the community that surrounds jquery, in addition to

[jQuery] Re: About Browser Width Detection

2007-08-04 Thread Glen Lipka
There is a plugin called dimensions. It gives all kinds of good functions for getting sizes. http://jquery.com/plugins/project/dimensions I had made a sample page using it here: http://www.commadot.com/jquery/dimensions/ Glen On 8/4/07, Kelvin Park [EMAIL PROTECTED] wrote: I am trying to

[jQuery] Re: Importing New CSS

2007-08-03 Thread Glen Lipka
I have an example of how to do that here. http://www.commadot.com/jquery/slideMenu/ Also, you may be interested in the behavior plugin. It listens for dom changes and will rebind clicks, and other events when something shows up, so you dont need to redo that sort of thing. Glen On 8/3/07,

[jQuery] Re: rowIndex property

2007-08-02 Thread Glen Lipka
rowIndex is a cross-browser property already. http://www.quirksmode.org/dom/w3c_html.html (search for rowIndex) I whipped up a demo for you. Click on a row. http://commadot.com/jquery/nextrow/rowindex.htm Glen On 8/2/07, Mike Miller [EMAIL PROTECTED] wrote: I need to know how to access the

[jQuery] Re: Ajax Experience in Boston ?

2007-08-02 Thread Glen Lipka
I believe I am invited to speak, but I havent received confirmation. If I do, then yes. Glen On 8/2/07, pkw [EMAIL PROTECTED] wrote: Any one going?

[jQuery] Re: Show all?

2007-08-02 Thread Glen Lipka
Might be easier if you post an page that isn't working. We could be more specific. However... Use a class when you want to refer to something that is repeated on the page. Also you can use :last to find the last one. $(tr:last).show() would show the last row found. Does that help? Glen On

[jQuery] Re: Show all?

2007-08-02 Thread Glen Lipka
is if an object is visible or invisible. Thanks Mitch *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Glen Lipka *Sent:* Thursday, August 02, 2007 7:30 PM *To:* jquery-en@googlegroups.com *Subject:* [jQuery] Re: Show all? Might be easier if you

[jQuery] Re: Two words for Jquery

2007-08-01 Thread Glen Lipka
Whip it On 8/1/07, Joel Birch [EMAIL PROTECTED] wrote: Insane Fans. ;) On 01/08/2007, at 11:38 PM, seedy wrote: Top Shelf ! Alexandre Plennevaux wrote: Juicy fresh ? -Original Message- From: jquery-en@googlegroups.com [mailto:jquery- [EMAIL PROTECTED]

[jQuery] Re: Good Javascript editor or IDE?

2007-08-01 Thread Glen Lipka
I use WeBuilder 2007. Jack Slocum had suggested checking out Idea IntelliJ last week at the conference. Glen On 8/1/07, Mark D. Lincoln [EMAIL PROTECTED] wrote: Matt, I just discovered Spket IDE (http://www.spket.com/). It was recommended by someone on the Ext (http://extjs.com/) forums

[jQuery] Re: Two words for Jquery

2007-08-01 Thread Glen Lipka
On the page about crescent fresh it said: adj; Of great kick-assity. So awesome that there isn't enough letters in the word Awesome to explain the Awesome-ness of said situation. I have to start using the term Of great kick-assity Glen On 8/1/07, polyrhythmic [EMAIL PROTECTED] wrote:

[jQuery] Re: problem with object and attachevent

2007-07-31 Thread Glen Lipka
Are you using jQuery? All of these functions have a pretty easy syntax in JQuery. Check out the getting started' stuff on the site http://www.jquery.com It will help tremendously. Easy click binding, easy appending, chaining. You will like it. Glen On 7/31/07, tsvikt [EMAIL PROTECTED] wrote:

[jQuery] Re: problem with object and attachevent

2007-07-31 Thread Glen Lipka
Check out this page. http://www.commadot.com/jquery/slideMenu/ Its got similar functions, appending, binding a click. Glen On 7/31/07, Glen Lipka [EMAIL PROTECTED] wrote: Are you using jQuery? All of these functions have a pretty easy syntax in JQuery. Check out the getting started' stuff

[jQuery] Re: removeClass error

2007-07-31 Thread Glen Lipka
If you declare that doc = $(this) then you dont need to put it in the $() below. Just have doc.removeClass('RedText'); Imagine the variable is replacing the word...so you basically had $($(this)).removeClass... which wouldn't work. GLen On 7/31/07, Shelane [EMAIL PROTECTED] wrote: Error:

[jQuery] Re: removeClass error

2007-07-31 Thread Glen Lipka
I was going for the record therefastest reply. Glen On 7/31/07, Glen Lipka [EMAIL PROTECTED] wrote: If you declare that doc = $(this) then you dont need to put it in the $() below. Just have doc.removeClass('RedText'); Imagine the variable is replacing the word...so you basically had

[jQuery] Re: Know if an element is focused

2007-07-31 Thread Glen Lipka
http://www.softwareunity.com/sandbox/JQueryMoreSelectors/ This plugin has the ability to find the focused element. Glen On 7/31/07, A Mele [EMAIL PROTECTED] wrote: Hi, I've got an hover() and a focus() effect that affect the same element. Both add / remove the same CSS to/from the element.

[jQuery] Re: Adobe AIR question - keypress?

2007-07-31 Thread Glen Lipka
Did you try this plugin? http://rikrikrik.com/jquery/shortkeys/ Glen On 7/31/07, Tobias Parent [EMAIL PROTECTED] wrote: OK, so Adobe AIR is built on the WebKit engine, same as Safari. Which, I think, means screwy keypress handling. If I change my bind() to the keydown, it works fine,

[jQuery] Re: AW: [jQuery] Re: OT: A Big Idea

2007-07-30 Thread Glen Lipka
The main idea is: 1. Allow the publisher to determine which rendering engine to display the page in. 2. Do it in an unobtrusive way so Google SEO is still happy and we are still working with HTML, CSS and jQuery 3. Only need to develop 1 version of a page in the normal way (although testing on

<    1   2   3   4   5   6   7   >