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

2007-08-02 Thread Dragan Krstic
First to thanks all on replays. I knew that my solution is not perfect, and I hoped that someone will find better solution (secretly John). @Justin We all fill the pain. My knowledge of jQuery still have boundaries, trick is to find way how to jump over it. @John, Mitch This looks and feels

[jQuery] Re: Two words for Jquery

2007-08-02 Thread David Duymelinck
js ez -- David Geoffrey Knutzen schreef: Remember, the two words must be less than a total of 20 characters (compressed) :) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Duymelinck Sent: Wednesday, August 01, 2007 6:41 AM To:

[jQuery] Re: Good Javascript editor or IDE?

2007-08-02 Thread Christof Donat
Hi, What recommendations on JavaScript editors or IDEs does anyone have? gvim, or emacs whichever fits your needs more ;-) Just to have brought up two alternatives to those IDEs packed with special features for everything and everyone but don't adapt to your speciffic needs. Is there

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

2007-08-02 Thread Klaus Hartl
Wizzud wrote: $('table') ... gets all tables $('table').eq(1) ... gets the second table $('#formelement').parent().parent().parent() ... gets the 'great-grandad' of #formelement or, to look back up the DOM for a table ... var _find = $('#formelement'); while(!_find.is('table')){ _find =

[jQuery] jquery.flickr + reflection

2007-08-02 Thread b0bd0gz
Hi, Im trying to use the http://cow.neondragon.net/stuff/reflection/ reflection plugin with the http://www.projectatomic.com/flickr/#a_code flickr plugin but no reflection is added. How I have it setup at the moment is once the html is loaded, load a set of flickr images then add a class

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

2007-08-02 Thread Wizzud
$('table') ... gets all tables $('table').eq(1) ... gets the second table $('#formelement').parent().parent().parent() ... gets the 'great-grandad' of #formelement or, to look back up the DOM for a table ... var _find = $('#formelement'); while(!_find.is('table')){ _find = _find.parent(); }

[jQuery] Re: What does === equate to?

2007-08-02 Thread Sam Collett
I don't think many actually use !== (and when you would want to use it) and many sites that show usage of operators don't cover !== (but do have ===). 3 != '3' false 3 !== '3'true 3 == '3' true 3 === '3'false On Aug 1, 9:33 pm, Michael Geary [EMAIL PROTECTED] wrote:

[jQuery] Re: where is thickbox reloaded ?

2007-08-02 Thread Alexandre Plennevaux
Hello Klaus, Maybe some of those geniuses in this list can wrap up a Massage plugin ? °-¨ Good recovery, take it easy! Alexandre -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Klaus Hartl Sent: mercredi 1 août 2007 16:26 To:

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

2007-08-02 Thread Alexandre Plennevaux
Beautiful! Must be showcased! That easing effect give it a nice slick finishing touch ! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: jeudi 2 août 2007 0:36 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Hover accordion

[jQuery] Re: Collapsible Menu radio buttons problems in IE7

2007-08-02 Thread Wizzud
For some reason (and don't ask me why) IE does not like the checked attribute being set in the html. Add $('#Menu input:radio').get(0).checked = true; to your ready function, and set your radios to input type=radio name=selection value=on / input type=radio name=selection value=off / (oh,

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

2007-08-02 Thread Wizzud
Klaus Hartl wrote: $('#formelement').parents('table:eq(0)'); Even simpler. NOTE: In documentation of parents(), first example is misleading/incorrect in that shows the returned items in reverse order. -- View this message in context:

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

2007-08-02 Thread Dragan Krstic
@All: Ok. Here's a final solution for inverted hover accordion. hoverIntent plug in is must. Structure is same as I posted earlier. Later during I will upload it on web. script var radi1 = true; var kd_opened; var to_hide; var height_op; jQuery.easing.easeout = function(p, n, firstNum, delta,

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

2007-08-02 Thread Sam Collett
Some simple plugins that may help. (function($) { $.fn.moveRowAfter = function(index, afterIndex) { this.find(tr).eq(index).insertAfter(this.find(tr).eq(afterIndex)); return this; }; $.fn.moveRowBefore = function(index, beforeIndex) {

[jQuery] Re: What does === equate to?

2007-08-02 Thread Rob Desbois
I had a discussion on the use of the === and !== operators recently on this list, my opinion was, and still is, that unless you explicitly WANT to allow type conversion, you should be using these. Only use == and != if you really want type conversion. It's bitten me once, although I can't for the

[jQuery] Re: What does === equate to?

2007-08-02 Thread Ian Struble
!== and === are identity operators. It is a good idea to use them instead of the equality operators (!= and ==) unless you know why you would want to use equality (and the possible type coercion) over identity. Probably the biggest gotcha with equality is with falsy values (false, 0, undefined,

[jQuery] Re: Dynamic Load Ajax of 2 jcarousel same page

2007-08-02 Thread Jan Sorgalla
Hi, Joshp wrote: I have searched and haven't quite come up with an answer. I'm trying to load 2 separate carousels on the same page from different .txt file sources. I'm not sure what I need to change. I tried putting two separate Javascript jcarousel code on the same page and just

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

2007-08-02 Thread Dragan Krstic
@John Why callback doesn't work with step function? Anyway, step function opens whole new field of synchronized animations. -- Dragan Krstić krdr http://krdr.ebloggy.com/

[jQuery] Re: Ajax Setup Questions

2007-08-02 Thread oscar esp
I test this code: jQuery.ajaxSetup( error: function(request, settings,ob){ alert( error: );} }) ; Then error message appear always that I do ajax athought ajax call is success. Am I doing something wrong or is a bug? On 2 ago, 03:13, Ganeshji Marwaha [EMAIL PROTECTED]

[jQuery] Re: How to get font size in pixels?

2007-08-02 Thread Sam Collett
On Aug 1, 11:13 pm, Luke Lutman [EMAIL PROTECTED] wrote: I've run into this before, and came up with pretty much the same solution as Klaus: http://jquery.lukelutman.com/plugins/px/jquery.px.js which you can call like so: $('#example').px('font-size'); One known bug is that it won't

[jQuery] Re: How to get font size in pixels?

2007-08-02 Thread Klaus Hartl
Sam Collett wrote: Another problem is that it wouldn't work if you use % for font size (which is true in my case). Getting the height may be a good option (although that also includes padding). You simply need to use a reference element that doesn't have padding and borders. --Klaus

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

2007-08-02 Thread Brandon Aaron
There is always room for improvement! Creating a nice set of demos has been discussed a few times but no one has actually stepped up to the plate to make it happen. Would you be willing to write a few demos? Would anyone else be willing to pitch in and help create a nice set of demos? We will also

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

2007-08-02 Thread fatihturan
What do you think about this question? Do you think jQuery's documentation is enought? Personally i think jQuery's documentation isn't enought. So i'm looking to a href=http://docs.mootools.net/;MooTools documentation/a and a href=http://demos.mootools.net/;demos/a then i'm looking to a

[jQuery] Re: 3D carousel?

2007-08-02 Thread Fred Janon
Great work Franck! I see it with IE6 but it doesn't sho up on the page with FF1.5? Are you going to make it a plugin available on the jQuery site? Thanks Fred On 8/2/07, Franck Marcia [EMAIL PROTECTED] wrote: I up this thread just to announce the brand new carousel of www.alapage.com,

[jQuery] Problem with Interface droppable onhover

2007-08-02 Thread NccWarp9
I have a problem with whis: $('#drag').Draggable(); $('#holder .dropzone').Droppable({ accept :'dropaccept', activeclass:'dropactive',

[jQuery] Re: jquery.flickr + reflection

2007-08-02 Thread b0bd0gz
Thanks, you were right about the flickr images not being loaded yet. I added a setTimeout to delay when the addClass would be executed and it works, but only some of the time. Is there a way I can get it to execute only when the flickr images are loaded? Also theres another problem :( when

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

2007-08-02 Thread Dragan Krstic
I think it is enough for start. jQuery is much easier to learn and examples on jQuery much more understandable and useful than mootools,dojo or prototype. But, jQuery have some undocumented features. For any advanced use, documentation is never enough, but jQuery api stands out. -- Dragan

[jQuery] Re: Ajax Setup Questions

2007-08-02 Thread Mike Alsup
Oscar, That should not be the case. Your error fn should only be invoked when there is an error. Do you have a sample page we could look at? In your code it looks like you have an extra curly brace and also the arguments passed to the error fn should look like this: jQuery.ajaxSetup(

[jQuery] Re: Good Javascript editor or IDE?

2007-08-02 Thread Sam Collett
I use Programmer's Notepad 2 (http://www.pnotepad.org/) and have even created some jQuery text clips (amongst others - http://www.texotela.co.uk/pn2/textclips/) for it. Although, as I am familiar with the jQuery API and have Visual Studio I don't use the clips much. It's not a full-blown IDE

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

2007-08-02 Thread Tane Piper
maybe you missed this: http://jquery.bassistance.de/api-browser/ Needs to be updated to 1.1.3 (might be worth holding on to the soon-to-be-released 1.1.4) On 8/2/07, fatihturan [EMAIL PROTECTED] wrote: What do you think about this question? Do you think jQuery's documentation is enought?

[jQuery] Re: How to get font size in pixels?

2007-08-02 Thread Sam Collett
On Aug 1, 3:42 pm, george.gsgd [EMAIL PROTECTED] wrote: Perhaps think around the problem. Can you get the height of the element? That'd be in pixels regardless. Or maybe use sIFR instead? sIFR was used, but now a server-side method generates the image (i.e. so Flash isn't required and the

[jQuery] Re: Form Plugin and IE 7

2007-08-02 Thread danilow
I can't post a demo page, but using the firebug, he sad that I have an error in this line of my formplugin.js: var a = this.formToArray(options.semantic); The value of each element of this line is this: this = [ form#insereExame_salvarExame.php ] formToArray = function() options = Object

[jQuery] Re: Form Plugin and IE 7

2007-08-02 Thread Mike Alsup
Danilow, This really isn't much to go on. Can you post more of your code? Or create a small page that demonstrates the problem? Mike On 8/2/07, danilow [EMAIL PROTECTED] wrote: I can't post a demo page, but using the firebug, he sad that I have an error in this line of my formplugin.js:

[jQuery] Draw line or polygon like Google Map?

2007-08-02 Thread howa
Hello, Did you played with Google Map? Google Map allow you to draw lines or polygon by providing points array. So wouldn't it be great if we have plugin using jQuery to do the same thing, but no need to related to map, just a general drawing library? howa

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

2007-08-02 Thread Alexandre Plennevaux
Have you actually tried to read mootools documentation? It's very technical IMHO. Jquery documentation 's layout may not be the sexiest, but it performs quite well in terms on how it is structured, written and how helpful and concise. Yes, in terms of docs too, less is sometimes more. I do wish

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

2007-08-02 Thread Terry B
I like http://www.visualjquery.com for my jquery documentation... yes there is lots of room for improvements but it's a working and living project which is constantly changing and I think the project managers are doing a great job to date... and demos? look at the plugin pages for demos...

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

2007-08-02 Thread Dragan Krstic
2007/8/2, Alexandre Plennevaux [EMAIL PROTECTED]: Have you actually tried to read mootools documentation? It's very technical IMHO. Yes, I did, but it cannot provide kick start as jQuery documentation. I have feeling mootool docs is oriented only to experienced users. Jquery documentation

[jQuery] Re: What does === equate to?

2007-08-02 Thread Terry B
known about this for awhile but since we are on the topic... there has to be some over head of using == and != does anyone know for sure the impact of the overhead... and does it matter of the type On Aug 2, 6:21 am, Ian Struble [EMAIL PROTECTED] wrote: !== and === are identity

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

2007-08-02 Thread Jonathan Sharp
I'd recommend booglyboogly since that's what happens when you click on the X -js On 8/2/07, Paul Caton [EMAIL PROTECTED] wrote: That's neat! Now you need a good name for it. Come to think of it, it looks a bit like table tennis - maybe you could call it Ping-Pong, something like that.

[jQuery] Before automatically closes tags...?

2007-08-02 Thread DaveG
I'm trying to enclose sections of the dom with a DIV tag. Basically I want all elements between headings (and including the top-most heading) enclosed in a DIV. My approach is to scan through the DOM, find a header tag, insert an opening DIV tag, continue scanning until I hit the next

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

2007-08-02 Thread Andy Matthews
The thing I don't like about jQuery's docs are that there are lots of things left out. I suppose it's assumptions made, but common, important things aren't mentioned. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dragan Krstic Sent: Thursday, August 02,

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

2007-08-02 Thread Paul Caton
That's neat! Now you need a good name for it. Come to think of it, it looks a bit like table tennis - maybe you could call it Ping-Pong, something like that. ;-)

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

2007-08-02 Thread Tobias Parent
Hey, all - Just finished my first jQuery/AIR app, and it works... mostly. I haven't figured how to make my title draggable yet, and it's not the most impressive game, but it's working. If you'd like to offer feedback, it's up as an HTML file at: http://tobias.parentleafarm.com/rebound.html

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

2007-08-02 Thread Andy Matthews
Doesn't work at all in IE7 (probably 6 either). In FF2, there's a slight, but annoying, pause when you try to move the paddle. Other than those things, it's a cool proof of concept. Good to see some people jumping into using jQuery with AIR apps. -Original Message- From:

[jQuery] Adding 1px border to a TD

2007-08-02 Thread Giovanni Battista Lenoci
Hi, don't know if is a jquery related problem, but can you help me? I've a table, like this: table tbody tr class=record td class=new Test /td td class=old Test /td /tr /tbody /table Then in my js: $(.new).hover( function() { $(this).addClass(hover) },

[jQuery] Re: Adding 1px border to a TD

2007-08-02 Thread Klaus Hartl
Giovanni Battista Lenoci wrote: Hi, don't know if is a jquery related problem, but can you help me? I've a table, like this: table tbody tr class=record td class=new Test /td td class=old Test /td /tr /tbody /table Then in my js: $(.new).hover( function() {

[jQuery] Drag and Drop links

2007-08-02 Thread Mario Moura
Hi Folks I am trying drag and drop links from treeview plugin to a input box. or any link (no matter) When I try do this the input box receive the href. and title Ex: a title=Natural Gas Distribution href=/final/24360Natural Gas Distribution/a So in this case my input box will receive

[jQuery] Re: What does === equate to?

2007-08-02 Thread Rob Desbois
There's no overhead unless the types are different. From the ECMAScript specification: For the 'abstract equality comparison algorithm' (==) [11.9.3] 1. if Type(x) is different from Type(y), go to step 14. For the 'strict equality comparison algorithm' (===) [11.9.3] 1. if Type(x) is different

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

2007-08-02 Thread Sam Collett
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 Although I'm surprised it isn't in SVN or on the plugins page (perhaps there are bugs?). On Aug 2, 3:48 pm, DaveG [EMAIL PROTECTED] wrote: I'm

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

2007-08-02 Thread Scott Sauyet
Brandon Aaron wrote: On 8/2/07, *fatihturan* [EMAIL PROTECTED] wrote: What do you think about this question? Do you think jQuery's documentation is enought? Personally i think jQuery's documentation isn't enought. There is always room for improvement! Creating a nice set of demos has been

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

2007-08-02 Thread Alexandre Plennevaux
don't forget it's a wiki, so we can actually update it ourselves. What is it that you found not well documented ? _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: jeudi 2 août 2007 15:50 To: jquery-en@googlegroups.com Subject: [jQuery] Re:

[jQuery] Safari: Elements within overlaying Div not recognised

2007-08-02 Thread [EMAIL PROTECTED]
Hi, Im currently working on a web app which has a feature where a user can click a button which brings up an image gallery in the form of a div which overlays the page until the user selects an image, at which point the gallery is hidden again. This has so far worked perfectly in Firefox and IE

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

2007-08-02 Thread Mitchell Waite
The documentation is excellent and one major reason I am here. As a publisher and writer of computer books, I think I know exactly what the best next step would be for improving the docs. Before I sold Waite Group Press to Simon and Schuster we had two very successful lines of language books

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

2007-08-02 Thread Mitchell Waite
Whats the big deal about AIR? I went to the labs to study it and its so overwhelming (does anything) that I kind of missed the whole point. From what I gathered its like an entire operating system. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[jQuery] Re: jquery.flickr + reflection

2007-08-02 Thread Mitchell Waite
Other than this issue with Flickr how do you like the Reflection plug in? it looks neat to me. I don't like that the reflection moves everything below it down. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of b0bd0gz Sent: Thursday, August 02,

[jQuery] Re: jquery.flickr + reflection

2007-08-02 Thread b0bd0gz
I think its great, really easy to use even for a beginner like me :-D and looks brilliant. Just need to find out how to stop it moving everything below it and it'll be perfect=) -- View this message in context: http://www.nabble.com/jquery.flickr-%2B-reflection-tf4204797s15494.html#a11967446

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

2007-08-02 Thread Justin Sepulveda
@John Thanks for jumping on this as I'm sure you have many more things to worry about in the jQuery world. It's very much appreciated. @Karl Kick-assity. I just had to note how awesome this word is. Nice work :-) On Aug 2, 4:01 am, Dragan Krstic [EMAIL PROTECTED] wrote: @John Why callback

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

2007-08-02 Thread Justin Sepulveda
@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 i click on a tab while another tab is open. jquery.js (line 321) too much recursion [Break on this error] fn.constructor != Array /function/i.test( fn + );

[jQuery] Re: What does === equate to?

2007-08-02 Thread Michael Geary
That's an interesting find, Rob, thanks. But watch out. We're looking at the ECMAScript standard, not running code. An actual implementation could have different performance for the two operators and still conform to the spec. It does seem unlikely that anyone would code == to be slower than ===

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

2007-08-02 Thread krdr . mft
@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 i click on a tab while another tab is open. jquery.js (line 321) too much recursion [Break on this error] fn.constructor != Array /function/i.test(

[jQuery] Re: jquery.flickr + reflection

2007-08-02 Thread Mitchell Waite
You have to leave room for the reflection image, but I wonder if there is a way to put that image in the background of a DIV so you could write over it with HTML. My guess now is that it's using display: none instead of hide and show. -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: disable Effect queue

2007-08-02 Thread seedy
I think the .animate() function will help you to combine effects ie. $(element).animate({height:'toggle',opacity:'toggle'}) This should slide and fade an element at the same time. ravenel wrote: Hello, I am using effects (e.g. fadeIn Out, slideUp Down etc.) on a div triggered with a

[jQuery] Re: slideUp/Down flicker with 1.0.4

2007-08-02 Thread nazeem
Anyone ? naz.. nazeem wrote: Can someone help me solve this flicker issue when navigating this menu...on LHS I am using simple slideup and slidedown.. attached the zip file... http://www.nabble.com/file/p11938864/jquery-seap.zip jquery-seap.zip - nazeem Brian Litzinger wrote:

[jQuery] Re: Safari: Elements within overlaying Div not recognised

2007-08-02 Thread Weaver, Scott
Hmmm, sounds like a z-index issue. Try setting z-index value of the div that contains the images and close button to a fairly highly value and see if that enables you to interact with them images. Hth, -scott -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] How to add or delete branches in Treeview ?

2007-08-02 Thread Amir
Dear Please guide me how to add or delete branches/folders/childs in treeview during run time ? I shall be very much obliged for this guideline. Thanks.

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

[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 i click

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

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

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

[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. So

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

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

[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

[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 the page

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

[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

[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: 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(div class='note'/div); }); --John On 8/2/07, DaveG [EMAIL PROTECTED] wrote:

[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 chance I

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

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

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

[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 to be

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

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

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

[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

  1   2   >