[jQuery] Re: Show all?

2007-08-02 Thread Brian Cherne
Well, I haven't seen any other accordion panes with working links so it's hard to tell where he'll put that data... if the data DIVs were all siblings (as they are currently) then this would work. There is a minor problem with siblings in that Mitchell's detail pane header (attrtext) is a sibling t

[jQuery] Re: Show all?

2007-08-02 Thread Mitchell Waite
Here is how I solved the problem without having to worry about sibs. http://www.whatbird.com/wwwroot/Components/Accordion%20Menu.html After the insights I got from Glen, I turned to Karl’s book Learning jQuery (I swear I don’t get a paid for this PR J). His first major example shows

[jQuery] Re: Show all?

2007-08-02 Thread Mitchell Waite
I think I know what to do now. Thanks. Yes I have seen the accordian plug in. Have you seen its demos? Its awful. John Resig's is much better. From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: Thursday, August 02, 2007 8:40 PM To: jquery-en@googlegroups.co

[jQuery] Re: Show all?

2007-08-02 Thread Wizzud
There is a possible problem using siblings() - if Basics:Location is the current selection, and you then browse through the other accordion panels then presumably while you are opening/closing panels the RH panel does not change, ie still showing Locations; if you decide to click on Belly in the

[jQuery] Re: Show all?

2007-08-02 Thread Brian Cherne
Hi Mitchell, I'm going to try writing some code and hopefully you'll get the idea and make it work (as it's untested). Basically, instead of writing everything out verbosely... try to determine automatically what needs to happen from the information stored in the DOM. $('.AccordionPanelContent a')

[jQuery] Re: Show all?

2007-08-02 Thread Glen Lipka
Yes, you can use IDs and Classes at the same time. In fact you can use multiple classes too. is perfectly valid. Each 'space-seperated' value in class is treated as additive classes. I am looking at the demo and it looks like it's working. What doesn't work right about it? Also, have you seen

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread John Resig
Ah, yeah, we need to update that one. We haven't moved the recipes over to the new format yet (they were part of the old 'Cookbook' page that we have since deprecated). --John On 8/2/07, Mitchell Waite <[EMAIL PROTECTED]> wrote: > > One PS to my comment about the How Do I...that I tried to use.

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread Mitchell Waite
One PS to my comment about the How Do I...that I tried to use. It uses an included JS. While its clever its not very educational, I would prefer that all the How Tos be pure jQuery IMO. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mitchell Wai

[jQuery] Re: Show all?

2007-08-02 Thread Mitchell Waite
That helps a lot Glen but I am still stuck. Here is my link http://www.whatbird.com/wwwroot/Components/Accordion%20Menu.html Each of the items inside a main menu will open its own layer, you can see the first two are working. And excuse my confusion I should have called this "close

[jQuery] Re: datePicker: How to allow choosing dates in the past?

2007-08-02 Thread Marshall Salinger
Thanks Kelvin, That worked perfectly. I guess I should have tried it before I posted to list! I assumed that it would set the start date of the calendar to that date rather than allow you to select dates in the past. -Marshall Kelvin Luck wrote: Hi, Very short answer because I'm in a rus

[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: Do you think jQuery's documentation is enought?

2007-08-02 Thread Mitchell Waite
I love it. In fact it had the answer to the question I've been trying to figure out "How can you close all divs except one!" Can you add to the FAQ: How long before this FQ is done? :) You only have about 900 How do I's to go before it becomes useful on a large scale. I am not sure about the fo

[jQuery] Show all?

2007-08-02 Thread Mitchell Waite
What I am looking for is a way to hide the last one of these that was clicked. I tried saving the object that was last used in a var but that didnt work. I thought then maybe I could create some kind of "close all" that would close all the other layers but not the one we have clicked to show.

[jQuery] Coldfusion 8 / Javascript image cropper

2007-08-02 Thread Andy Matthews
This demo uses Prototype and Scriptaculous, but there's no reason that it shouldn't be able to use jQuery: http://cfsilence.com/blog/client/index.cfm/2007/8/2/Introducing-cfImageCropper--Custom-Tag-For-Client-Side-Image-Cropping

[jQuery] Re: Ajax Experience in Boston ?

2007-08-02 Thread Rey Bango
Yep. Also, we'll be having a jQuery mini-conference in Boston the day after the conference. We're finalizing the details so keep your eyes peeled. Rey... pkw wrote: Any one going?

[jQuery] Re: Coder vs Designer?

2007-08-02 Thread Ganeshji Marwaha
isn't FlyDom plugin created for this purpose.. I have never used it, but i was always under that impression. -GTG On 8/2/07, Josh Nathanson <[EMAIL PROTECTED]> wrote: > > >What are others doing to make sure that even small snippets of HTML > aren't creeping into their js files? Do you have >this

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread Ganeshji Marwaha
>> I'm not following what you mean by "an organized site" though. sorry, i guess, i didn't say it right. I mean't, a site (or part of a site) in which the user interface is designed in such a fashion that it is easily accessible for anyone looking to learn quickly. A blog is more sequential for t

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread John Resig
We, actually, just started work on a jQuery FAQ that follows this format exactly: http://docs.jquery.com/Frequently_Asked_Questions Some include live demos, most have code. It's not perfect, but I have a text file with a list of things that should probably be tackled in it. Sitting in the IRC cha

[jQuery] Re: Coder vs Designer?

2007-08-02 Thread Josh Nathanson
>What are others doing to make sure that even small snippets of HTML aren't >creeping into their js files? Do you have >this in separate html files that >you import and then fill with data? Yes, I do this. If I am adding more than a couple of elements to the DOM, I will create a blank html te

[jQuery] Re: Coder vs Designer?

2007-08-02 Thread Mitchell Waite
I do my original design in Photoshop, then brew it up in Dreamweaver using external style sheets, one per major functional area. Then I use jQuery with Dream to build the UI in pieces and get them working separately before combining. I keep all my images in one big folder. I try and uses s

[jQuery] Re: Coder vs Designer?

2007-08-02 Thread Sean Catchpole
Hi Matt, You've touched on a interesting topic and everyone has their own way of doing it. Personally I split my code into two sections, backend and frontend, or rather data and presentation. With this in mind I consider javascript to be on the frontend and therefor a designers tool. On 8/2/07,

[jQuery] Swapping out an image map using jQuery

2007-08-02 Thread Spencer
I have an image with an image map assigned -- which works properly. However, I have a second image map that needs to be swapped in so it overwrites the first image map. I'm using jQuery and .html() to insert the second image map, but when I mouse over the second image map it appears to be the fir

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread Karl Swedberg
On Aug 2, 2007, at 5:56 PM, Ganeshji Marwaha wrote: Karl, A couple of things... 1. I am just thinking out loud here. Is there a way to setup up your blog in such a way that, if one of us posts a blog entry in our blogs (maybe in a category named jquery) and express interest in including th

[jQuery] Re: Ajax Experience in Boston ?

2007-08-02 Thread Karl Swedberg
On Aug 2, 2007, at 5:24 PM, pkw wrote: Any one going? Jonathan Chaffer and I are planning on it, though we haven't signed up yet. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com

[jQuery] Re: Ajax Experience in Boston ?

2007-08-02 Thread Ganeshji Marwaha
is there going to be a video recording of the sessions? -GTG On 8/2/07, Glen Lipka <[EMAIL PROTECTED]> wrote: > > 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: 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: question for klaus

2007-08-02 Thread Mitchell Waite
This is a great idea - my entire focus has been on UI development work with jQuery. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tane Piper Sent: Thursday, August 02, 2007 2:40 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: question

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

2007-08-02 Thread Justin Sepulveda
You'll notice in my example, the 4th tab jumps up just a bit when you click on any of the tabs. If you slow the speed down you'll notice it more. It's not a huge deal, but it can become annoying the more you focus on it :-) I just caught his new thread this morning. It fixes the issue I was ta

[jQuery] Coder vs Designer?

2007-08-02 Thread Matt Penner
It seems that before Web 2.0 and jQuery type frameworks it was easier to separate server code from web presentation. Now, especially with AJAX, things seem to be blurring again. In my present job we don't have a designer, so us coders are the designer. I don't mind but I'd still like to keep the

[jQuery] Memory leak in slideToggle function

2007-08-02 Thread VR Shaiju
Here is my code and it shows a memory leak in firfox and I have not tested with ie. I am sure that there will be a memory leak. Here is my code and I am using jQuery 1.1.3.1-$Date: 2007-07-05 00:43:24 -0400 (Thu, 05 Jul 2007) ***/ $(function() { $("#B

[jQuery] Ajax Experience in Boston ?

2007-08-02 Thread pkw
Any one going?

[jQuery] Re: Good Javascript editor or IDE?

2007-08-02 Thread Matt Penner
Thanks for all the great suggestions. I used IntelliJ at a previous job and loved it. Unfortunately we're a MS house here and I doubt I could get the request approved. :) I'll check out Aptana's latest as well as Spket. I use Notepad++ for quick and easy edits so that's my general text editor

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread Mitchell Waite
This will work as a blog but it will be full of holes unless there is a standard format, variable naming, etc. Learningjquery.com is great and I read it, but I am thinking you need hundred's of How Tos for it to be useful and a very fast way for finding the one you need. I notice lots of p

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

2007-08-02 Thread Jack Killpatrick
A... that would explain why it was so hard to find... :-) . Well, it worked well for what I'm using it for, so thanks much. The height change sounds good, too. In my case it would be nice to be able to make one or two of the tabs a different height than the rest. I'm not concerned about o

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread Ganeshji Marwaha
Karl, A couple of things... 1. I am just thinking out loud here. Is there a way to setup up your blog in such a way that, if one of us posts a blog entry in our blogs (maybe in a category named jquery) and express interest in including that in learningjquery.com, then it gets added to ur blog. I

[jQuery] Re: question for klaus

2007-08-02 Thread Klaus Hartl
Ganeshji Marwaha wrote: pretty much everything i had in mind is in ur list... That is great... Is there an alpha version or something that i can look at, or, u didnt start any development in that front yet? No, I didn't start yet... --Klaus

[jQuery] Re: question for klaus

2007-08-02 Thread Klaus Hartl
Tane Piper wrote: Klaus, If I may interject here - tabs would be a useful widget within the UI project. Check out http://docs.jquery.com/UI to see what were doing. I agree. Instead of calling it Tabs 3, it could become a UI tabs widget, right? --Klaus

[jQuery] Re: question for klaus

2007-08-02 Thread Ganeshji Marwaha
pretty much everything i had in mind is in ur list... That is great... Is there an alpha version or something that i can look at, or, u didnt start any development in that front yet? -GTG On 8/2/07, Klaus Hartl <[EMAIL PROTECTED]> wrote: > > > Ganeshji Marwaha wrote: > > Hi, > > > > I am a happy

[jQuery] Re: question for klaus

2007-08-02 Thread Tane Piper
Klaus, If I may interject here - tabs would be a useful widget within the UI project. Check out http://docs.jquery.com/UI to see what were doing. On 02/08/07, Klaus Hartl <[EMAIL PROTECTED]> wrote: > > Ganeshji Marwaha wrote: > > Hi, > > > > I am a happy user of your tabs plugin... who isn't?

[jQuery] Re: If user clicks in one place OR another place OR another place...

2007-08-02 Thread Karl Swedberg
On Aug 2, 2007, at 4:50 PM, Stephan Beal wrote That limits the searches to under the given content. (Though i'm not 100% certain whether you need the $() around 'this' or not.) No, it isn't necessary. So, this would work: $('span', this) as would this: $(this).find('span')

[jQuery] Re: Inserting text in a DIV

2007-08-02 Thread Klaus Hartl
Mitchell Waite wrote: Can you insert text directly into a div from jQuery or does it have to be an element like a table that is inside the div? No, that's not required: $('div').text('text only'); $('div').html('even HTML'); Hm, I didn't expect to find these under "Attributes" in the docum

[jQuery] Re: Inserting text in a DIV

2007-08-02 Thread Andy Matthews
You can insert directly into a DIV. Use the html() method: $('#yourDiv').html('this text would get inserted into your div'); _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mitchell Waite Sent: Thursday, August 02, 2007 4:08 PM To: jquery-en@googlegroups.com Su

[jQuery] Inserting text in a DIV

2007-08-02 Thread Mitchell Waite
Can you insert text directly into a div from jQuery or does it have to be an element like a table that is inside the div?

[jQuery] Re: BlockUI fade out - Possible to disable for some instances?

2007-08-02 Thread Mike Alsup
Hi Magnus, You can disable the fade effect when you call the blocking function using the "fadeOut" option. For example: $.blockUI( "Please wait", null, { fadeOut: 0 } ); You can also change the time it takes to fade via the "fadeTime" option. Cheers! Mike On 8/2/07, Maggi <[EMAIL PROTECTED]

[jQuery] Re: javascript binding event to object method

2007-08-02 Thread ablock
I have an answer to my own question (i'm still reading up on the theory of closures, but i think that this is an example of one)... I saved "this" into another variable and created an anonymous function which called the "bind" method using my saved "this" var this_copy = this; function doBin

[jQuery] BlockUI fade out - Possible to disable for some instances?

2007-08-02 Thread Maggi
Hi everyone! I was wondering, and this question is mainly pointed to Mike, if I could disable the fade-out on the BlockUI within the BlockUI function? I am using it to display a confirmation box, and if it is selected it displays another box, loads something with Ajax and then displays a "Hurray

[jQuery] Re: If user clicks in one place OR another place OR another place...

2007-08-02 Thread Stephan Beal
On Aug 2, 10:17 pm, cfdvlpr <[EMAIL PROTECTED]> wrote: > However, I'd like to also get access to the attributes of a span > within that li. What line of code would give me a variable with that > span's attributes? You can use the $('selector') syntax, simply pass on a context argument as the sec

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread Karl Swedberg
On Aug 2, 2007, at 2:42 PM, Ganeshji Marwaha wrote: Hi list, I have been thinking about a how-to/demo/interesting-use-cases kinda site for jquery lately. But, it is not a trivial effort if we want to get it to a state where it will be something jquery community can be proud of. So, i gue

[jQuery] Re: question for klaus

2007-08-02 Thread Klaus Hartl
Ganeshji Marwaha wrote: Hi, I am a happy user of your tabs plugin... who isn't? But in my case, i had to have a feature where i can create new tabs on the fly and close open tabs as well. I managed to achieve this functionality (limited though) by tweaking and adding code to the right callba

[jQuery] javascript binding event to object method

2007-08-02 Thread ablock
I know when using addEventListener to "this" refers to the "owner" which is in this case the HTML element. The JQuery method "bind" seems to act similarly. Is there away to access the object that called the event handler also? Thanks

[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

[jQuery] Re: Anything similar to IE's table.moveRow in jquery?

2007-08-02 Thread Klaus Hartl
Mike Miller wrote: Here is my snippet: var myIndex = $j("#show_medication").parents("tr")... #show_medication is a form element. parents("tr") is the row containing the element Now I want to get the rowIndex Once I have the rowIndex property I would call the moveRow function as follows: $j("

[jQuery] Re: Anything similar to IE's table.moveRow in jquery?

2007-08-02 Thread Mike Miller
Here is my snippet: var myIndex = $j("#show_medication").parents("tr")... #show_medication is a form element. parents("tr") is the row containing the element Now I want to get the rowIndex Once I have the rowIndex property I would call the moveRow function as follows: $j("#show_medication").pa

[jQuery] Re: If user clicks in one place OR another place OR another place...

2007-08-02 Thread cfdvlpr
Thanks John, that works great... Here's another question that is somewhat related: I have this line as the first line of the function which gives me access to all the attributes of the li element: l = $(this); However, I'd like to also get access to the attributes of a span within that li. Wh

[jQuery] question for klaus

2007-08-02 Thread Ganeshji Marwaha
Hi, I am a happy user of your tabs plugin... who isn't? But in my case, i had to have a feature where i can create new tabs on the fly and close open tabs as well. I managed to achieve this functionality (limited though) by tweaking and adding code to the right callbacks. Thanks for making it so

[jQuery] Re: where is thickbox reloaded ?

2007-08-02 Thread Rey Bango
It actually is. Since I don't use PT, I didn't check it in IE. But I did use ThickBox Reloaded and it rocks! Very nice work Klaus! Rey Ganeshji Marwaha wrote: >> (http://www.huddletogether.com/projects/lightbox2/) is that a popular library. doesnt seem to work on IE 7 though -GTG On 8/1/

[jQuery] Re: Ken Burns effects using jQuery?

2007-08-02 Thread Mitchell Waite
The images move in jerky steps, not smooth like the mootools version. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nicolas Hoizey Sent: Thursday, August 02, 2007 12:05 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Ken Burns effects u

[jQuery] Re: slideUp/Down flicker with 1.0.4

2007-08-02 Thread Karl Swedberg
Are you using jQuery 1.0.4? Firefox Mac? If so, you'll need to upgrade your version of jQuery. I'm reluctant to open zip files. Do you have a simple demo page where the problem is evident? --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Aug 2, 2007,

[jQuery] Re: Anything similar to IE's table.moveRow in jquery?

2007-08-02 Thread Klaus Hartl
Klaus Hartl wrote: The plugin could of course be changed to take tr elements instead of passing indices and you don't need to handle the rowIndex: jQuery.fn.moveRow = function(from, to, useBefore) { var trs = this.find(">tr"); $(from)['insert' + (useBefore && 'Before' || 'After')](to);

[jQuery] Re: Anything similar to IE's table.moveRow in jquery?

2007-08-02 Thread Klaus Hartl
Mike Miller wrote: Thanks for this...it truly is amazing what jquery can do. A quick question for you though regarding the index property. If I want to make this more dynamic...do you know how I would find out the value of the rowIndex property for the table row I want to move? Get it direct

[jQuery] Re: .ajax error function

2007-08-02 Thread Mike Alsup
An ajax call can error out if: - it times out (per the timeout option) - the server response status indicates an error (ie: 401, 404) - an exception is thrown during the send operation - an exception is thrown when processing the response The last item above is especially interesting because it

[jQuery] .ajax error function

2007-08-02 Thread Joe
My .ajax call is erroring out and I can't figure out why. Was working fine, and all the sudden quit. I am looking for an example of the .ajax error function. Documentaion says: error (Function) - A function to be called if the request fails. The function gets passed three arguments: The XMLHtt

[jQuery] Re: Anything similar to IE's table.moveRow in jquery?

2007-08-02 Thread Mike Miller
ok Klaus, Thanks for this...it truly is amazing what jquery can do. A quick question for you though regarding the index property. If I want to make this more dynamic...do you know how I would find out the value of the rowIndex property for the table row I want to move? On Aug 2, 1:17 pm, Kla

[jQuery] Re: 3D carousel?

2007-08-02 Thread Franck Marcia
On 2 août, 19:49, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > >> Are you going to make it a plugin available on the jQuery site? > > I thought it was an implementation of the interface 3d carousel on his site. > correct me if i am wrong? > Yeah, it's just a variation in Stephan's work, with s

[jQuery] Re: Ken Burns effects using jQuery?

2007-08-02 Thread Nicolas Hoizey
>> but i would sincerely recommend one demo per page. It is too >> straining on the eyes, but i see ur point. > > OK, I'll do that. Done: -Nicolas -- Nicolas "Brush" HOIZEY Clever Age : http://www.clever-age.com/ Gastero Prod : http:

[jQuery] Re: Anything similar to IE's table.moveRow in jquery?

2007-08-02 Thread Klaus Hartl
Klaus Hartl wrote: Mike Miller wrote: Ok...so this is working somewhat...the issue I see now is that the find() in the plugins are finding the "wrong row". My table structure looks like this: table - row1 - cell 1 -table row 2 -cell 1 -table row3 -cell 1

[jQuery] Re: Anything similar to IE's table.moveRow in jquery?

2007-08-02 Thread Klaus Hartl
Mike Miller wrote: Ok...so this is working somewhat...the issue I see now is that the find() in the plugins are finding the "wrong row". My table structure looks like this: table - row1 - cell 1 -table row 2 -cell 1 -table row3 -cell 1 -table When

[jQuery] Re: Draw line or polygon like Google Map?

2007-08-02 Thread Tane Piper
UML-like flow diagrams embedded into pages? I'm sure the canvas tag could be used to make something like this relativly easy? On 02/08/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: > good idea? I am trying to think of use-cases for it... do u have any real > world use case for it off-hand oth

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread Tane Piper
I'm in the process of setting up my new site, and I'm building it upon drupal - which I've found supports the use of script tags, and embedding JS within nodes - maybe the plugin repository can be expanded to support demo pages for each plugin, that way its easily available for any plugin in the r

[jQuery] Re: Ken Burns effects using jQuery?

2007-08-02 Thread Nicolas Hoizey
> it looks great nicolas. Thanks! > but i would sincerely recommend one demo per page. It is too > straining on the eyes, but i see ur point. OK, I'll do that. -Nicolas -- Nicolas "Brush" HOIZEY Clever Age : http://www.clever-age.com/ Gastero Prod : http://www.gasteroprod.com/ Photos :

[jQuery] Re: Ken Burns effects using jQuery?

2007-08-02 Thread Nicolas Hoizey
> Very nice in FF but no go in IE7. Just tried with FF for a start. > Too fast - slow down the effects speed so we can really see them. The default duration for each photo is 6 seconds and a half, do you really think it's too fast??? > Is this plug in ready for prime time? Not at all, it's

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread Ganeshji Marwaha
Hi list, I have been thinking about a how-to/demo/interesting-use-cases kinda site for jquery lately. But, it is not a trivial effort if we want to get it to a state where it will be something jquery community can be proud of. So, i guess it should be more of a community effort with a group of pe

[jQuery] rowIndex property

2007-08-02 Thread Mike Miller
I need to know how to access the rowIndex property of a row in a table and I want to assign that to a javascript variable: Something like: var a = $("#tableRow").

[jQuery] Re: Hover accordion (as on apple.com)

2007-08-02 Thread Justin Sepulveda
I'm silly. Ignore my post. Just needed to put in an "if" statement that checked if there was more than 1 panel visible. If so, don't do anything on click. On Aug 2, 9:54 am, "Dragan Krstic" <[EMAIL PROTECTED]> wrote: > Last version of inverted accordion > on:http://www.bydot.net/hoveracc/hove

[jQuery] Re: Before automatically closes tags...?

2007-08-02 Thread DaveG
On Thu, 2 Aug 2007 13:56:25 -0400, "John Resig" <[EMAIL PROTECTED]> wrote: > > I just made a quick tweak to .nextUntil() so that it can take a > comma-separated list of items. I updated the demo to reflect this as > well, for example: > > $("h2").each(function(){ > $(this).nextUntil("h1,

[jQuery] Re: where is thickbox reloaded ?

2007-08-02 Thread Ganeshji Marwaha
>> (http://www.huddletogether.com/projects/lightbox2/) is that a popular library. doesnt seem to work on IE 7 though -GTG On 8/1/07, Rey Bango <[EMAIL PROTECTED]> wrote: > > > Sorry about your back Klaus! :( > > If you need help in testing please let me know. Since you may be in the > code, any

[jQuery] Re: Before automatically closes tags...?

2007-08-02 Thread DaveG
On Thu, 2 Aug 2007 13:56:25 -0400, "John Resig" <[EMAIL PROTECTED]> wrote: > > I just made a quick tweak to .nextUntil() so that it can take a > comma-separated list of items. I updated the demo to reflect this as > well, for example: > > $("h2").each(function(){ > $(this).nextUntil("h1,

[jQuery] Re: Before automatically closes tags...?

2007-08-02 Thread DaveG
On Thu, 02 Aug 2007 18:12:02 -, Stephan Beal <[EMAIL PROTECTED]> wrote: > > On Aug 2, 7:46 pm, DaveG <[EMAIL PROTECTED]> wrote: >> What I'd really like is a way to insert dom elements without automatic > closure taking place. I checked out jQ and didn't see a flag in the code; > although t

[jQuery] Re: blockUI question

2007-08-02 Thread Mike Alsup
How about using a window.confirm dialog? :-) I put together an example of how this can be done with blockUI: http://malsup.com/jquery/block/nest.html Mike On 8/2/07, oscar esp <[EMAIL PROTECTED]> wrote: > > I am using blockUI like modal window, it means that I load html page > in the blockUI

[jQuery] Re: Ken Burns effects using jQuery?

2007-08-02 Thread Andy Matthews
Doesn't work at all on IE. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mitchell Waite Sent: Thursday, August 02, 2007 1:05 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Ken Burns effects using jQuery? Very nice in FF but no go in

[jQuery] Re: Before automatically closes tags...?

2007-08-02 Thread Stephan Beal
On Aug 2, 7:46 pm, DaveG <[EMAIL PROTECTED]> wrote: > What I'd really like is a way to insert dom elements without automatic > closure taking place. I checked out jQ and didn't see a flag in the code; > although to be honest I'm not sure I fully understood what's going on in > there ;) The aut

[jQuery] Re: Ken Burns effects using jQuery?

2007-08-02 Thread Stephan Beal
On Aug 2, 7:54 pm, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > it looks great nicolas. but i would sincerely recommend > one demo per page. i second Ganeshji's opinion: too many demos on one page. It brings my browser to a near standstill.

[jQuery] Re: Ken Burns effects using jQuery?

2007-08-02 Thread Mitchell Waite
Very nice in FF but no go in IE7. Too fast - slow down the effects speed so we can really see them. Is this plug in ready for prime time? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nicolas Hoizey Sent: Thursday, August 02, 2007 10:40 AM To:

[jQuery] Re: Before automatically closes tags...?

2007-08-02 Thread John Resig
I just made a quick tweak to .nextUntil() so that it can take a comma-separated list of items. I updated the demo to reflect this as well, for example: $("h2").each(function(){ $(this).nextUntil("h1, h2").wrapAll(""); }); --John On 8/2/07, DaveG <[EMAIL PROTECTED]> wrote: > > > > > On Thu,

[jQuery] Re: Draw line or polygon like Google Map?

2007-08-02 Thread Ganeshji Marwaha
good idea? I am trying to think of use-cases for it... do u have any real world use case for it off-hand other than maps. -GTG On 8/2/07, howa <[EMAIL PROTECTED]> wrote: > > > Hello, > > Did you played with Google Map? > > Google Map allow you to draw lines or polygon by providing points > array.

[jQuery] Re: Ken Burns effects using jQuery?

2007-08-02 Thread Ganeshji Marwaha
it looks great nicolas. but i would sincerely recommend one demo per page. It is too straining on the eyes, but i see ur point. There goes the power of jquery... it is just 1.7 K packed. Good work... -GTG On 8/2/07, Nicolas Hoizey <[EMAIL PROTECTED]> wrote: > > > > That's a great-looking demo--t

[jQuery] Re: 3D carousel?

2007-08-02 Thread Ganeshji Marwaha
>> Are you going to make it a plugin available on the jQuery site? I thought it was an implementation of the interface 3d carousel on his site. correct me if i am wrong? -GTG On 8/1/07, Fred Janon <[EMAIL PROTECTED]> wrote: > > Great work Franck! > > I see it with IE6 but it doesn't sho up on th

[jQuery] Re: Ken Burns effects using jQuery?

2007-08-02 Thread Nicolas Hoizey
> That's a great-looking demo--thanks for the link! Hopefully a > jQuery addin will be developed for that. I tried, and got something quite nice using only jQuery's animate(): There are 4 running demos on the same page, but it seems to

[jQuery] Re: Anything similar to IE's table.moveRow in jquery?

2007-08-02 Thread Mike Miller
Ok...so this is working somewhat...the issue I see now is that the find() in the plugins are finding the "wrong row". My table structure looks like this: table - row1 - cell 1 -table row 2 -cell 1 -table row3 -cell 1 -table When we use the parents("

[jQuery] Re: Before automatically closes tags...?

2007-08-02 Thread DaveG
On Thu, 02 Aug 2007 15:55:20 -, Sam Collett <[EMAIL PROTECTED]> wrote: > > There is a plugin called nextUntil that you may be able to use. An > example is available at > http://dev.jquery.com/~john/jquery/test/nextuntil.html I hadn't seen that before. It's close, but not quite what I'm lo

[jQuery] Re: If user clicks in one place OR another place OR another place...

2007-08-02 Thread John Resig
> $("[EMAIL PROTECTED]'history']" OR '[EMAIL PROTECTED]').click(function() Like so: $("[EMAIL PROTECTED]'history'], [EMAIL PROTECTED]').click(function() ...) --John

[jQuery] Re: Check this, if you've got the time

2007-08-02 Thread Tane Piper
My question is, when are they doing to release a linux version of the dev kit and runtime? Its looks very interesting but I have yet been able to try it out :( On 02/08/07, Christopher Jordan <[EMAIL PROTECTED]> wrote: > Mitchell, > > Check out my blog post about AIR. It's **WAY** more than jus

[jQuery] Re: Check this, if you've got the time

2007-08-02 Thread Christopher Jordan
Mitchell, Check out my blog post about AIR. It's **WAY** more than just WebKit (though it does indeed incorproate the WebKit HTML engine). http://cjordan.us/index.cfm/2007/7/19/Adobe-on-AIR-Bus-Tour-Summer-2007 In short, AIR is the Adobe Integrated Runtime. It allows you to use HTML, JavaScript,

[jQuery] Re: If user clicks in one place OR another place OR another place...

2007-08-02 Thread cfdvlpr
Another question I have is how would you combine a keyup event like this: $( [EMAIL PROTECTED]'history'].click || [EMAIL PROTECTED] .keyup ) (function() { });

[jQuery] Re: disable Effect queue

2007-08-02 Thread Mitchell Waite
Use 'hover()'. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of seedy Sent: Thursday, August 02, 2007 9:17 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: disable Effect queue I think the .animate() function will help you to combine eff

[jQuery] Re: Check this, if you've got the time

2007-08-02 Thread Tobias Parent
AIR is basically WebKit (the engine behind Safari), more tightly integrated into the system. Basically, an easier-to-code version of Konfabulator. It allows developers to develop web applications that run on the desktop, have behaviors that operate a certain way when you're offline, and have

[jQuery] If user clicks in one place OR another place OR another place...

2007-08-02 Thread cfdvlpr
I currently have this function that works perfectly: $("[EMAIL PROTECTED]'history']").click(function() But I want to add areas to this click event like this: $('[EMAIL PROTECTED]').click(function() What's the syntax for this? Here's pseudo code for what I want to do if the above question is not

[jQuery] blockUI question

2007-08-02 Thread oscar esp
I am using blockUI like modal window, it means that I load html page in the blockUI message. That works fine, however I have a problem now, because I need to block (when I am in the "modal") to show confirm message... Are there any way to block twice?

[jQuery] Re: Hover accordion (as on apple.com)

2007-08-02 Thread Dragan Krstic
Last version of inverted accordion on: http://www.bydot.net/hoveracc/hoveracc_3.htm Enjoy... 2007/8/2, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > > > > > @John > > One more thing. I'm getting a serious amount of JavaScript errors, > > the same error repeated over and over. It seems to happen when

[jQuery] Re: Anything similar to IE's table.moveRow in jquery?

2007-08-02 Thread Mike Miller
Sam...what plugins are you refering to with the moveRowAfter? M On Aug 2, 2:24 am, Wizzud <[EMAIL PROTECTED]> wrote: > $('table') ... gets all tables > $('table').eq(1) ... gets the second table > $('#formelement').parent().parent().parent() ... gets the 'great-grandad' of > #formelement > > or,

  1   2   >