Re: [jQuery] jQuery and Rails

2007-02-21 Thread Klaus Hartl
Yehuda Katz schrieb: I'm in the process of building what will soon be the first release of jQuery on Rails together with Steven Bristol, who was a winner of Rails Hackfest (which won him a free ticket to RailsConf for his contributions to the Rails core). Great news again (does that stop

Re: [jQuery] jQuery and Rails

2007-02-21 Thread Ⓙⓐⓚⓔ
though I'm not using ruby or ror, i did some reading and it looks very interesting... will you have an install guide for jqor? I have ruby on my mac, and have run simple programs but little more. On 2/20/07, Yehuda Katz [EMAIL PROTECTED] wrote: I'm in the process of building what will soon

Re: [jQuery] jQuery and Rails

2007-02-21 Thread Andreas Wahlin
1) Are you using Rails? Only in my spare time, but I want to use it more. 3) Would you prefer an approach that generated JS by writing Ruby helpers that generated jQuery code, or an approach that made is easier to link up existing jQuery code into Rails? I suppose the linkup ... not

Re: [jQuery] jQuery and Rails

2007-02-21 Thread Andre Lewis
Yehuda, I'm looking forward to jQuery on Rails! 1) Are you using Rails? All my server-side work is in Rails. 3) Would you prefer an approach that generated JS by writing Ruby helpers that generated jQuery code, or an approach that made is easier to link up existing jQuery code into Rails?

Re: [jQuery] Flash video chunkyness and strange rendering on Mac Firefox using thickbox?

2007-02-21 Thread Kelvin Luck
Yeah - I had exactly this problem before... All parts of the flash movie which aren't being redrawn disappear. I came up with a bit of a hacky workaround... I drew a black box at the back of my flash movie (the background was black) and made it into a movieclip which was constantly switching

Re: [jQuery] jCarousel with many (100+) items

2007-02-21 Thread Kelvin Luck
Alexandre Plennevaux wrote: Back in the days, i developed in flash a UI that is similar to jCarousel, but showing thousands (!) of items. The same issue quickly arouse, so the solution was to unload/load dynamically the prev/next, say, 20 items. Yeah - that is exactly the approach I'm

Re: [jQuery] jQuery is OpenAjax Compliant

2007-02-21 Thread Kenneth
First off, kudos for taking the initiative to keep jQuery at the leading edge! I would like to inquire though, and forgive my ignorance if this is silly, but why not just include the jquery.openajax.js in the standard jQuery release? It looks to only be 11 actual lines, which only check for the

Re: [jQuery] Loop Checkbox Action Question

2007-02-21 Thread Gorkfu
Ok I figured this one out using append and empty, except it emptys all checkboxes. I tried using prev and :last, but that only worked for the last checkbox checked not the current one. $(document).ready(function(){ $([EMAIL PROTECTED]'checkbox']).click(function(){ if

Re: [jQuery] Flash video chunkyness and strange rendering on Mac Firefox using thickbox?

2007-02-21 Thread Joel Birch
Yes I've run into this and it had me stumped. I found out that it is (drum roll) once again due to Mac FF ongoing issues with opacity. I had opacity:.99; set on the body element because it triggers smoother rendering of fonts (sometimes good, sometimes bad, but that's another story). I had

Re: [jQuery] ANNOUNCEMENT: jQuery Ext Partner to Deliver Integrated JavaScript UI, Features

2007-02-21 Thread Felix Geisendörfer
Personally, I think that we should keep adding speed optimizations until we're at 19. kb compressed. :) That'd be 163839,1808 bit. I'm exited to see the code for allowing partial bits to be stored in a JS library : ). -- Felix -- http://www.thinkingphp.org

[jQuery] History Plugin API

2007-02-21 Thread Chris Ovenden
Hi All I have searched Google and my archives of this list, and can't find an API for the history plugin. Is there one, somewhere? Thanks! Chris -- Chris Ovenden http://thepeer.blogspot.com Imagine all the people / Sharing all the world ___ jQuery

Re: [jQuery] Loop Checkbox Action Question

2007-02-21 Thread Gorkfu
Ok I finnally got this to work, lol. I came accross filter and it helps hide checked checkboxes on page load. =) Such as (top one for clicks and bottom for page load): script type=text/javascript $(document).ready(function(){ $([EMAIL PROTECTED]'checkbox']).click(function(){

Re: [jQuery] History Plugin API

2007-02-21 Thread Klaus Hartl
Chris Ovenden schrieb: Hi All I have searched Google and my archives of this list, and can't find an API for the history plugin. Is there one, somewhere? Thanks! Chris Chris, you'll find the documentation inline.

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

2007-02-21 Thread Sam Collett
On 20/02/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: John Resig schrieb: Hi Everyone - Today, we're proud to announce that the jQuery Project and Jack Slocum's Ext Project, have partnered to integrate the amazingly lightweight and powerful jQuery framework with Ext's awesome UI

Re: [jQuery] Loop Checkbox Action Question

2007-02-21 Thread Karl Rudd
The ready function does that. It works on the page (for most browsers) before the page is displayed. Karl Rudd On 2/21/07, Gorkfu [EMAIL PROTECTED] wrote: I understand the ready function and have looked over the documentation. Maybe I wasn't clear enough in my last post and I'm sorry if

Re: [jQuery] jCarousel with many (100+) items

2007-02-21 Thread agent2026
vitch wrote: And I'm wondering if I should add this functionality into jCarousel itself as it might be useful for other people? Yes, you should! :) Adam -- View this message in context: http://www.nabble.com/jCarousel-with-many-%28100%2B%29-items-tf3257540.html#a9079247 Sent from

Re: [jQuery] Loop Checkbox Action Question

2007-02-21 Thread Karl Rudd
You could combine those two and stick them both in the document HEAD, since they both run on ready (see other email for why). There's no need to for the filter() function in this case, the each() function will do fine. Both iterate over the collection of objects, but filter is meant for

Re: [jQuery] History Plugin API

2007-02-21 Thread Chris Ovenden
On 2/21/07, Klaus Hartl [EMAIL PROTECTED] wrote: Chris Ovenden schrieb: Hi All I have searched Google and my archives of this list, and can't find an API for the history plugin. Is there one, somewhere? Thanks! Chris Chris, you'll find the documentation inline.

Re: [jQuery] History Plugin API

2007-02-21 Thread Klaus Hartl
Chris Ovenden schrieb: Thanks, Klaus! I'll give it a try. Chris Another hint: if you build the documentation from SVN with all plugins, the history plugin is in there as well. -- Klaus ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Loop Checkbox Action Question

2007-02-21 Thread Gorkfu
Thx, that does clean it up a lot. =) As for normal being default for show and hide, I think the default doesn't work correctly, or there is no default. Testing it blank in IE7 and Firefox2, the checkboxes disapear faster than when set to normal setting. Karl Rudd wrote: You could combine

Re: [jQuery] History Plugin API

2007-02-21 Thread Sam Collett
On 21/02/07, Klaus Hartl [EMAIL PROTECTED] wrote: Chris Ovenden schrieb: Hi All I have searched Google and my archives of this list, and can't find an API for the history plugin. Is there one, somewhere? Thanks! Chris Chris, you'll find the documentation inline.

Re: [jQuery] accordion table, instead of an accordion list/menu?

2007-02-21 Thread Karl Swedberg
I haven't tested any, but there have been a few threads on this issue before and one workaround I recall reading about was to temporarily wrap a set of rows in a div before showing and hiding and then remove the div after the effect has completed. If you discover this or some other method

Re: [jQuery] Loop Checkbox Action Question

2007-02-21 Thread Karl Swedberg
Actually, normal is not default for .show() and .hide() -- even though it is the default for all the .slideX() methods and .fadeIn ()/.fadeOut(). Without a parameter, .show() and .hide() act differently -- just applying the display=none or display=block/inline to the matched set of

[jQuery] Problem to add an jQuey- command to a loop

2007-02-21 Thread ZentraNet
___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Select elements without specific children

2007-02-21 Thread agent2026
Thanks everyone, that did it. I was looking at gotAPI which doesn't mention that issue. Not sure who takes care of that, but guess it should be updated. One question: is there a best practice regarding using the .not method vs. the :not pseudo-class? Btw, in my tests, and in examples I've

[jQuery] New jQMaps and jQPanView plugins

2007-02-21 Thread SeViR
Hi, I write some plugins for jQuery that I would want to share with everybody. Sorry, I have no time for comment the code. I make a simple sample pages with notepad ;) jQMaps plugin: http://www.sevir.org/projects/storage/jqmaps/index.html Hotspots, maximize info window, custom icons,...

[jQuery] Hide and show inside JTabs

2007-02-21 Thread Web Specialist
Hi all I'm using JTabs with a big form for improve usability. Works like a charm. Inside this form I'll want to show/hide input fields when user checks/unchecks a radio button. But I have a problem. Using this sample script works fine outside JTabs: Jquery code: script type=text/javascript

Re: [jQuery] New jQMaps and jQPanView plugins

2007-02-21 Thread Benjamin Sterling
Very good stuff, thanks. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] New jQMaps and jQPanView plugins

2007-02-21 Thread Schnuck
wow, thanks. On 21/02/07, SeViR [EMAIL PROTECTED] wrote: Hi, I write some plugins for jQuery that I would want to share with everybody. Sorry, I have no time for comment the code. I make a simple sample pages with notepad ;) jQMaps plugin:

Re: [jQuery] jQuery and Rails

2007-02-21 Thread Luke Lutman
Yehuda Katz wrote: 1) Are you using Rails? Yes :-) 3) Would you prefer an approach that generated JS by writing Ruby helpers that generated jQuery code, or an approach that made is easier to link up existing jQuery code into Rails? 4) If you've used jQuery with Rails, what issues have you

Re: [jQuery] jQuery and Rails

2007-02-21 Thread Klaus Hartl
Luke Lutman schrieb: Yehuda Katz wrote: 1) Are you using Rails? Yes :-) 3) Would you prefer an approach that generated JS by writing Ruby helpers that generated jQuery code, or an approach that made is easier to link up existing jQuery code into Rails? 4) If you've used jQuery with

Re: [jQuery] jQuery and Rails

2007-02-21 Thread Klaus Hartl
Peter De Berdt schrieb: 1) Are you using Rails? Yes, close to 24/7 :-) 3) Would you prefer an approach that generated JS by writing Ruby helpers that generated jQuery code, or an approach that made is easier to link up existing jQuery code into Rails? A mix of both actually, it would

Re: [jQuery] New jQMaps and jQPanView plugins

2007-02-21 Thread Rey Bango
Sevir, awesome work my man. Could I make a small request? Would it be possible to provide a version of the files with the instructions parameters translated to English? While I can understand what you mean by el parámetro infopanel debe de ser un objeto DOM (the infopanel parameter should be

Re: [jQuery] New jQMaps and jQPanView plugins

2007-02-21 Thread Klaus Hartl
SeViR schrieb: Hi, I write some plugins for jQuery that I would want to share with everybody. Sorry, I have no time for comment the code. I make a simple sample pages with notepad ;) jQMaps plugin: http://www.sevir.org/projects/storage/jqmaps/index.html Hotspots, maximize info

[jQuery] Komod API catalog

2007-02-21 Thread Alexandre Plennevaux
Hello! the excellent (and free) Komodo Edit 4 software offers the possibility to extend code completion libraries. I would like to know if there is an existing jquery API catalog already created? Googling around and looking at activestate website was unfruitful. Thank you! Alexandre

Re: [jQuery] New jQMaps and jQPanView plugins

2007-02-21 Thread Christian Bach
2007/2/21, SeViR [EMAIL PROTECTED]: Hi, I write some plugins for jQuery that I would want to share with everybody. Sorry, I have no time for comment the code. I make a simple sample pages with notepad ;) jQMaps plugin: http://www.sevir.org/projects/storage/jqmaps/index.html Hotspots,

Re: [jQuery] jQuery and Rails

2007-02-21 Thread Chris Ovenden
On 2/21/07, Yehuda Katz [EMAIL PROTECTED] wrote: 1) Are you using Rails? Yes, but still a newbie; migrating from PHP 3) Would you prefer an approach that generated JS by writing Ruby helpers that generated jQuery code, or an approach that made is easier to link up existing jQuery code

Re: [jQuery] jQuery and Rails

2007-02-21 Thread Luke Lutman
Klaus Hartl wrote: Luke, have you tried to use the AssetPackager plugin? It is not totally automatic as you have to define the scripts to be packed in one yml, but thats okay for me. I think merging whatever JavaScript there is into a file is not always good for files that are only

Re: [jQuery] accordion table, instead of an accordion list/menu?

2007-02-21 Thread rolfsf
Thanks Karl - I've scoured the threads - it's definitely on the list of hard problems, and labeled unsolved http://docs.jquery.com/HardProblems Karl Swedberg-2 wrote: I haven't tested any, but there have been a few threads on this issue before and one workaround I recall reading about

[jQuery] How to get the ID of the parent node?

2007-02-21 Thread dalvarado
Hi, Following up from a question I asked yesterday, I wanted to get the closest parent DIV given an arbitrary nested element. But when I request the .id of that element, i repeatedly get an undefined message, even though this call, $(this).parent(div.sidebarToDo) yields an object.

Re: [jQuery] How to get the ID of the parent node?

2007-02-21 Thread Sam Collett
On 21/02/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, Following up from a question I asked yesterday, I wanted to get the closest parent DIV given an arbitrary nested element. But when I request the .id of that element, i repeatedly get an undefined message, even though this call,

Re: [jQuery] How to get the ID of the parent node?

2007-02-21 Thread Chris Ovenden
On 2/21/07, Sam Collett [EMAIL PROTECTED] wrote: On 21/02/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, Following up from a question I asked yesterday, I wanted to get the closest parent DIV given an arbitrary nested element. But when I request the .id of that element, i repeatedly get

Re: [jQuery] How to get the ID of the parent node?

2007-02-21 Thread dalvarado
---Original Message--- From: Chris Ovenden [EMAIL PROTECTED] Subject: Re: [jQuery] How to get the ID of the parent node? Sent: Feb 21 '07 16:04 On 2/21/07, SAM COLLETT [LINK: mailto:[EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On 21/02/07, [LINK: mailto:[EMAIL PROTECTED]

[jQuery] animation in interface ie7 bug

2007-02-21 Thread Andreas Wahlin
I've struggled for about three hours with a strange ie7 bug. It's a simple animation (of a div with a height of 6em), looking like this .animate({height: ghostHeight}, 250, function() { ... }); and it works fine everywhere except ie7 that says invalid argument. If i take away the interface

[jQuery] Applyng classes to table rows?

2007-02-21 Thread Shane Graber - jQuery
I'm stumped on how to do this with jQuery. I have a table like this: table tr class=row id=blah-one td /td /tr tr td /td /tr tr td /td /tr tr class=row id=blah-two td /td /tr tr td

Re: [jQuery] accordion table, instead of an accordion list/menu?

2007-02-21 Thread Kristinn Sigmundsson
Thing is that even if you have a callback to the slideToggle and set the display property to table-row, it still comes out wierd... maybe a wrapping div is the best solution? On 2/21/07, rolfsf [EMAIL PROTECTED] wrote: Thanks Karl - I've scoured the threads - it's definitely on the list of

Re: [jQuery] New jQMaps and jQPanView plugins

2007-02-21 Thread Andreas Wahlin
jQPanView: http://www.sevir.org/projects/storage/jpanview/index.html inspired in Pan View Plugin of Christian Bach (thanks for your sample, Christian) Strangest thing ... the top example works in safari, but it seems the bottom one does not, i wanna see mr T :D andreas

Re: [jQuery] accordion table, instead of an accordion list/menu?

2007-02-21 Thread Sam Collett
On 21/02/07, Kristinn Sigmundsson [EMAIL PROTECTED] wrote: Thing is that even if you have a callback to the slideToggle and set the display property to table-row, it still comes out wierd... maybe a wrapping div is the best solution? I have tried wrapping with DIV's, but they don't seem to

Re: [jQuery] Applyng classes to table rows?

2007-02-21 Thread Kristinn Sigmundsson
this does it for the classes $(table tr:not([EMAIL PROTECTED])).each(function() { $(this).attr(class, $(this).prev([EMAIL PROTECTED]).attr(class)); }); you might be able to get it down to one row... I would not recommend setting the IDs as

Re: [jQuery] New jQMaps and jQPanView plugins

2007-02-21 Thread SeViR
Sorry, as I said, normally I have any time... but, I will do an exception :P http://www.sevir.org/projects/storage/jqmaps/index.html Comments translated, example translated, and all params now are in english. Rey Bango escribió: Sevir, awesome work my man. Could I make a small request? Would

[jQuery] Jquery to set cookies?

2007-02-21 Thread Quiero
Hi is there a way to set cookies with Jquery? Let's say someone submits a form, I use jquery to process the form through ajax and sends it to php... is there a way to create a cookie with jquery? Maybe in the ajax call I can send the data to PHP and set it through PHP? Anyways, just wanted

[jQuery] Setting a cookie through Jquery

2007-02-21 Thread Gaston Garcia
Hi is there a way to set cookies with Jquery? Let's say someone submits a form, I use jquery to process the form through ajax and sends it to php... is there a way to create a cookie with jquery? Maybe in the ajax call I can send the data to PHP and set it through PHP? Anyways, just wanted

[jQuery] jCarousel wrapping

2007-02-21 Thread Jim Nimblett
Does anyone know if there is a way to get jCarousel to wrap without 'zooming' from the last to the first item? I would rather just have the first item slide in just as each of the other items have. That way it's more of a seamless loop. Any ideas or suggestions? - Jim

Re: [jQuery] New jQMaps and jQPanView plugins

2007-02-21 Thread Rey Bango
You're awesome Sevir! I think you did it just because I knew Spanish! ;o) Thanks man, Rey SeViR wrote: Sorry, as I said, normally I have any time... but, I will do an exception :P http://www.sevir.org/projects/storage/jqmaps/index.html Comments translated, example translated, and all

Re: [jQuery] How to get the ID of the parent node?

2007-02-21 Thread Sam Collett
On 21/02/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: ---Original Message--- From: Chris Ovenden [EMAIL PROTECTED] Subject: Re: [jQuery] How to get the ID of the parent node? Sent: Feb 21 '07 16:04 On 2/21/07, SAM COLLETT [LINK: mailto:[EMAIL PROTECTED] [EMAIL

Re: [jQuery] How to get the ID of the parent node?

2007-02-21 Thread Karl Swedberg
Hi Dave, A couple things: 1. since you're trying to get the ID of an ancestor of a class=deleteTDItem, you need to add an s to parent. This should work: $('#todoList a.deleteTDItem').each(function(index) { var divId = $(this).parents(div.sidebarToDo).attr(id);

Re: [jQuery] How to get the ID of the parent node?

2007-02-21 Thread Sam Collett
On 21/02/07, Sam Collett [EMAIL PROTECTED] wrote: On 21/02/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: ---Original Message--- From: Chris Ovenden [EMAIL PROTECTED] Subject: Re: [jQuery] How to get the ID of the parent node? Sent: Feb 21 '07 16:04 On 2/21/07,

Re: [jQuery] Jquery to set cookies?

2007-02-21 Thread Klaus Hartl
Quiero schrieb: Hi is there a way to set cookies with Jquery? Let's say someone submits a form, I use jquery to process the form through ajax and sends it to php... is there a way to create a cookie with jquery? Maybe in the ajax call I can send the data to PHP and set it through PHP?

Re: [jQuery] Setting a cookie through Jquery

2007-02-21 Thread Sam Collett
On 21/02/07, Gaston Garcia [EMAIL PROTECTED] wrote: Hi is there a way to set cookies with Jquery? Let's say someone submits a form, I use jquery to process the form through ajax and sends it to php... is there a way to create a cookie with jquery? Maybe in the ajax call I can send the data to

Re: [jQuery] New jQMaps and jQPanView plugins

2007-02-21 Thread SeViR
Andreas Wahlin escribió: Strangest thing ... the top example works in safari, but it seems the bottom one does not, i wanna see mr T :D andreas Strange yes, I have tested in Konqueror (same render than Safari [KHTML]) and works. Maybe refreshing works? :P -- Best Regards, José

Re: [jQuery] Setting a cookie through Jquery

2007-02-21 Thread Ryan Rose
There is a cookie plugin by Klaus (http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/) Or you can get it from svn: (svn://jquery.com/plugins) Ryan Rose Lead Developer Digiwize, Inc. 256 Woodmont Dr. Coventry, CT 06238 e: [EMAIL PROTECTED] p: 860.742.8252 http://www.digiwize.com

Re: [jQuery] New jQMaps and jQPanView plugins

2007-02-21 Thread SeViR
Klaus Hartl escribió: SeViR schrieb: Nice! It would be totally cool to get latitude/longitude of the required data from a geo microformat... Or even better get the whole location data from a vcard microformat. Here's an example of one: div class=vcard a class=fn org href=...

Re: [jQuery] How to get the ID of the parent node?

2007-02-21 Thread dalvarado
---Original Message--- From: Sam Collett [EMAIL PROTECTED] Subject: Re: [jQuery] How to get the ID of the parent node? Sent: Feb 21 '07 17:19 On 21/02/07, Sam Collett [EMAIL PROTECTED] wrote: On 21/02/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: ---Original

[jQuery] Easiest way to add elements on the fly?

2007-02-21 Thread dalvarado
Hi, If, after the document has fully loaded, I want to append a DIV to the end of another DIV with id = todoList, what is the easiest way to do that? The HTML code that I want to append is below ... div class=sidebarToDo width=100% id=dToDo3 table cellpadding=0 cellspacing=0 border=0

Re: [jQuery] New jQMaps and jQPanView plugins

2007-02-21 Thread Alex Cook
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of SeViR Subject: [jQuery] New jQMaps and jQPanView plugins jQMaps plugin: http://www.sevir.org/projects/storage/jqmaps/index.html Hotspots, maximize info window, custom icons,... jQPanView:

Re: [jQuery] Validation plugin 1.0 alpha 2

2007-02-21 Thread Jörn Zaefferer
Lee Hinde schrieb: Thanks. I wonder if that may be the same issue as with jQuery core... it's testsuite tends to crash Safari, too. Could you click through the demos (http://jquery.bassistance.de/validate/demo-test/validate-demo.html) and see if anything fails there? Tabbing through

Re: [jQuery] release: treeview plugin 1.1

2007-02-21 Thread Jörn Zaefferer
abba bryant schrieb: On the black and grey demo in ff 1.5 ( only browser I checked ) the background art isn;t correct. There is a vertical gap in the art between the main nodes. That's intentional to demonstrate that multiple trees can be controlled with one treecontrol (two trees with one

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

2007-02-21 Thread Mark D. Lincoln
Sam, If you are going to use rich components like those found in Ext, does this matter? I am looking at porting large parts of rich client application functionality to the Web and if a user has scripting disabled, the application will not work anyway. Mark D. Lincoln Mark D. Lincoln, Director

Re: [jQuery] Komod API catalog

2007-02-21 Thread Jörn Zaefferer
Alexandre Plennevaux schrieb: Hello! the excellent (and free) Komodo Edit 4 software offers the possibility to extend code completion libraries. I would like to know if there is an existing jquery API catalog already created? Googling around and looking at activestate website was

[jQuery] dimensions and IE offset problem

2007-02-21 Thread glenn . w . bach
I am seeing some behavior in IE that I don't understand and that I don't see in Firefox. The offset is being shifted by the margins of the body. If I explicitly set the body to have no margin, it lines up, if I just leave the default, it is shifted. I can demonstrate it with: html head script

Re: [jQuery] Set selected option

2007-02-21 Thread Klaus Hartl
Arne-Kolja Bachstein schrieb: Hi, does anyone know how I can set the selected option in an option list? I got several dropdowns to select a date and would like to preselect the current date using JS (cannot use a server side language atm). I know how to find out the date, but how could I

Re: [jQuery] dimensions and IE offset problem

2007-02-21 Thread Brandon Aaron
Thanks for the report Glenn. I'm going to do some testing and see what I can figure out. -- Brandon Aaron On 2/21/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I am seeing some behavior in IE that I don't understand and that I don't see in Firefox. The offset is being shifted by the margins

Re: [jQuery] Applyng classes to table rows?

2007-02-21 Thread Shane Graber - jQuery
Awesome! Thanks for the code. :) I agree, I should not set the id as id's are unique identifiers. What I wanted to do was take the class name and id name from a previous tr / and combine them into a new class name like so: from: class=row id=blah-one to: class=row blah-one I modified

Re: [jQuery] Set selected option

2007-02-21 Thread Jörn Zaefferer
Klaus Hartl schrieb: Arne-Kolja Bachstein schrieb: Hi, does anyone know how I can set the selected option in an option list? I got several dropdowns to select a date and would like to preselect the current date using JS (cannot use a server side language atm). I know how to find out the

Re: [jQuery] accordion table, instead of an accordion list/menu?

2007-02-21 Thread Rick Faircloth
After trying about everything I could think of to make a 2nd row slide hide smoothly, I finally decided to make two tables The first table contains the visible information, such as event name, date, time (this is an experiment for a calendar). The second table right beneath it contains all

Re: [jQuery] dimensions and IE offset problem

2007-02-21 Thread Brandon Aaron
Hey Glen I've got a fix but it looks as if SVN is down right now. You can grab the patched version from here[1] but the revision and last modified tags will not be up-to-date until SVN is back up. [1]: http://brandon.jquery.com/plugins/dimensions/ -- Brandon Aaron On 2/21/07, Brandon Aaron

Re: [jQuery] Applyng classes to table rows?

2007-02-21 Thread rolfsf
sorry - wrong url http://www.monkeypuzzle.net/testfiles/jquery/Accordion_table/index_2.html Rolf rolfsf wrote: I could be wrong, but it sounds like you're trying to do something very similar to what I was working on yesterday - collapsing a set of rows by clicking on another row. You can

[jQuery] blockUI and CPU intensive form processing

2007-02-21 Thread RCS Computers
Basically, I have some CPU intensive form validation that takes about 3 seconds to complete. I would like blockUI to start before the form processing and stop after the form processing. However, the blockUI message doesn't ever show up. When I comment out $.unblockUI(), the blockUI message

Re: [jQuery] dimensions and IE offset problem

2007-02-21 Thread Glenn Bach
Awesome! Thanks so much. It worked perfectly. Glenn On 2/21/07, Brandon Aaron [EMAIL PROTECTED] wrote: Hey Glen I've got a fix but it looks as if SVN is down right now. You can grab the patched version from here[1] but the revision and last modified tags will not be up-to-date until SVN is

Re: [jQuery] Applyng classes to table rows?

2007-02-21 Thread Shane Graber - jQuery
Holy smoke, that's almost exactly what I'm trying to do. The only thing I'm wanting to do different is to make certain table rows collapsed by default when the page is first viewed, which is why I am applying classes to rows. May I use your code a bit in what I'm working on? Shane On 2/21/07,

Re: [jQuery] Introduction and Masked Input Plugin

2007-02-21 Thread Jonathan Freeman
Very slick plugin, I will for sure use this on my next application. An enhancement might be to provide a elegant way of handling non fixed length numbers, such as currency inputs. So I guess its not so much masking, but pattern matching. $(#amount).maskedinput(999,999.99); Nice job! ---

Re: [jQuery] blockUI and CPU intensive form processing

2007-02-21 Thread Benjamin Sterling
If we can take a look at the test page, that would be helpful. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] specifying count for rss feed display with each function

2007-02-21 Thread john smith
Sorry all Im still a newb to jquery. Ive been messing around with using jquery for grabbing and displaying rss feed info. A lot less code then using straight javascript. what Im not quite clear on is how you grab a specific count from doing an .each For example if I grab a feed with the jquery

Re: [jQuery] Loop Checkbox Action Question

2007-02-21 Thread Karl Rudd
I stand corrected. :) I did a quick search and couldn't find a normal string in jQuery core so I assumed it would just default to hide/show. I now see that normal defaults to using the fade-shrink / fade-expand animation. Much smoother than the raw hide / show. Karl Rudd On 2/22/07, Karl

Re: [jQuery] blockUI and CPU intensive form processing

2007-02-21 Thread RCS Computers
Thanks for the help. Here you go: http://rcs-comp.com/tmp/LaborEffPlanGrid.asp.htm -- Randy Syring RCS Computers Web Solutions 502-644-4776 http://www.rcs-comp.com Whether, then, you eat or drink or whatever you do, do all to the glory of God. 1 Cor

Re: [jQuery] specifying count for rss feed display with each function

2007-02-21 Thread Karl Swedberg
Hi John, It works just like a for loop. You can put the i in the anonymous function argument for .each(). For example: $('p').each(function(index) { alert('This is paragraph number ' + index); }); (I used index instead of i because I'm kind of dense, and it helps to remind me what it

Re: [jQuery] specifying count for rss feed display with each function

2007-02-21 Thread Kristinn Sigmundsson
you can use the .lt() command before the .each to narrow the results, so if you want the first 10, you would use something like $(this).lt(10).each... //Kristinn On 2/21/07, john smith [EMAIL PROTECTED] wrote: Sorry all Im still a newb to jquery. Ive been messing around with using jquery

Re: [jQuery] Applyng classes to table rows?

2007-02-21 Thread Kristinn Sigmundsson
Ah, I re-read your post again... silly me, but glad you worked it out! //Kristinn On 2/21/07, Shane Graber - jQuery [EMAIL PROTECTED] wrote: Awesome! Thanks for the code. :) I agree, I should not set the id as id's are unique identifiers. What I wanted to do was take the class name and id

Re: [jQuery] blockUI and CPU intensive form processing

2007-02-21 Thread Mike Alsup
That's a problem. I see what you're doing, and I understand why you're doing it, but I don't know of any way to force the browser to render changes while you've got the current thread pinned. You really need async behavior to make this work, but that's not an option for you in your use case. I

Re: [jQuery] Easiest way to add elements on the fly?

2007-02-21 Thread Karl Rudd
$(function(){ $('#todoList').append( 'div class=sidebarToDo ./div' ); }); http://docs.jquery.com/DOM/Manipulation#append.28_content_.29 You might like to break the HTML into a string per line and join them via +. For example: 'div class=sidebarToDo width=100% id=dToDo3' +

Re: [jQuery] dimensions.js lesson needed

2007-02-21 Thread Brandon Aaron
I believe you are better off letting CSS deal with this. The performance of the CSS is going to greatly outweigh the JavaScript in this scenario. You should check out the YUI Grids CSS [1], maybe it can help you get what you need without too much overhead. [1]:

Re: [jQuery] specifying count for rss feed display with each function

2007-02-21 Thread John W
Ahh I see. THank you guys this really helps. Jquery is great. Karl Swedberg-2 wrote: Hi John, It works just like a for loop. You can put the i in the anonymous function argument for .each(). For example: $('p').each(function(index) { alert('This is paragraph number ' +

Re: [jQuery] dimensions.js lesson needed

2007-02-21 Thread rolfsf
Thanks Brandon, I'll look through the YUI grids... While much of it can be done with css, I just don't see how I can get the autoscroll to function properly unless I've set a fixed height and width, which I can't think of how to do accurately with css on a flexible height and width page. But...

[jQuery] Gmail-style updates

2007-02-21 Thread Daemach
I have a form with which I want to do ajax updates as they type. If they stop typing for more than 2 seconds it should update the field. If the field blurs before the 2 seconds are up it should update the field. I have the ajax side of it worked out, and currently the updates work properly

Re: [jQuery] blockUI and CPU intensive form processing

2007-02-21 Thread RCS Computers
Felix, Thank you, that did indeed give blockUI enough time to bring up the message. However, it created another problem. // when submitting the form, check the values to make sure they are numeric $(#lePlanForm).submit(function() { var retval; // Give the user

Re: [jQuery] Gmail-style updates

2007-02-21 Thread Jörn Zaefferer
Daemach schrieb: I have a form with which I want to do ajax updates as they type. If they stop typing for more than 2 seconds it should update the field. If the field blurs before the 2 seconds are up it should update the field. I have the ajax side of it worked out, and currently the

[jQuery] Text looks choppy in IE7 with Opacity

2007-02-21 Thread Rey Bango
Hey all, Have a buddy of mine thats having an issue and he asked if I can help. Here's what he said: Only problem I have had with jQuery is regarding opacity changes with the hide/show effects in IE7 with cleartype in XP. It makes the text look choppy after any sort of opacity change on the

Re: [jQuery] Gmail-style updates

2007-02-21 Thread Daemach
In what context does the timer run? Each field will have its own timer/ajax function. If I have multiple text fields, and people are typing and tabbing through them quickly the updates still need to happen reliably. Currently it works like this: $(document).ready( function() {

[jQuery] Big problem with FF2, flickering on all animate effect

2007-02-21 Thread Sanyi
Hi All, I would like to make a simple animation effect: ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] blockUI and CPU intensive form processing

2007-02-21 Thread Felix Geisendörfer
Well you are now making your form processing somewhat asynchronous, at least to the degree that your submit event handler function will return before the actual form validation starts. Fixing this should would probably look like this:

  1   2   >