Re: [jQuery] jqModal and AJAX

2007-03-05 Thread Robert Vlaicu
I have a problem with rebinding jqModal when i load main content via ajax i really run out of ideas jqModal is last version jquery the same i whant to use the jqModal to load product description and the produtas are loaded with ajax. $(document).ready( function() { var addClickHandle

Re: [jQuery] Need some guidance...

2007-03-05 Thread Rick Faircloth
Thanks for the guidance, Chris. I'll have a look at the code and see what I can do! Rick From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christopher Jordan Sent: Monday, March 05, 2007 4:41 PM To: jQuery Discussion. Subject: Re: [jQuery] Need some guidance... Rick, You could

[jQuery] Auto Vertical Scroller newsBlock div

2007-03-05 Thread {js}sTyler
Hi All, Anyone have any tips for me to do a sort of news scroll vertical scrolling div? Mine is here: http://70.133.226.219/v2/07index.aspx It's beneath the jquery buttons in the left column. It is scrolling up or sort of ticking up, if you give it a few seconds you will see the headlines tick

Re: [jQuery] How to find a div with a class ending with a string?

2007-03-05 Thread Karl Swedberg
Dave, You can find all of this information in the documentation at http://docs.jquery.com/Selectors Supported, but different All attribute selectors are written like their XPath counter-parts (in that all attributes should begin with an @ symbol). * [EMAIL PROTECTED] an E element with

Re: [jQuery] Auto Vertical Scroller newsBlock div

2007-03-05 Thread Karl Swedberg
Hi there, I did something like this a while ago. Not sure if it's exactly what you're looking for, but it might get your closer: http://www.learningjquery.com/2006/10/scroll-up-headline-reader Glen Lipka used the code for a mockup of the Intuit home page when he was working there. His versi

Re: [jQuery] jqModal r7 release!

2007-03-05 Thread Chris Domigan
Brice, re $.jqm.hash. I'm getting an error that there is no such property. Doing an inspection of the object $.jqm in firebug shows only two properties - .open and .close. Chris ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] How to block a function while another finishes? (and pause!)

2007-03-05 Thread Kim Johnson
Hi Karl, Indeed, I caught that when I was copying the line over :) Unfortunately, though, it doesn't seem to work. The div slides up correctly, but never slides back down. I attempted to tweak it by not chaining, combinations of the animate and pause function, just the pause function, just the an

[jQuery] Finding an element based on a partial string

2007-03-05 Thread Rey Bango
Hi guys, Say I have 3 form elements (type input/text) with a DIV called "cart": qty_1 qty_2 qty_3 If I wanted to find all form elements within the div "cart" that started with the string "qty_", how would I do that? Rey... ___ jQuery mailing list di

Re: [jQuery] Dynamically modifying the content of the carousel

2007-03-05 Thread phplord
I need guidance for help... hxela wrote: > > Initially my carousel loads /foo and is fed data from the database in > order to build the carousel. > > I'd like the user to be able to click on a link /foo?search=bar and have > the carousel update with the new data. > > Any ideas? Would I have

Re: [jQuery] Finding an element based on a partial string

2007-03-05 Thread Matt Stith
Check out the 'selectors' page in the docs. http://docs.jquery.com/DOM/Traversing/Selectors - [EMAIL PROTECTED] an E element with a "foo" attribute - [EMAIL PROTECTED] an E element whose "foo" attribute value is exactly equal to "bar" - [EMAIL PROTECTED] an E element whose "foo" attribu

[jQuery] Charting or plotting coming?

2007-03-05 Thread Bernardo Telles
Excellent! I'll keep my eyes open! ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Finding an element based on a partial string

2007-03-05 Thread Kenneth
I'll give it a newbie try! $('[EMAIL PROTECTED]').(...); or maybe: $('[EMAIL PROTECTED]', '#cart').(...); Just guessing here though. On 3/5/07, Rey Bango <[EMAIL PROTECTED]> wrote: Hi guys, Say I have 3 form elements (type input/text) with a DIV called "cart": qty_1 qty_2 qty_3 If I want

Re: [jQuery] jcarousel issue

2007-03-05 Thread Indigo
On Monday 05 March 2007 14:35, Marshall Salinger wrote: > Can you post some sample code? It sounds like the paths to your images > is wrong. > > -Marshall > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of Indigo > Sent: Monday, March 05, 2007 12:23 PM

Re: [jQuery] Finding an element based on a partial string

2007-03-05 Thread Rey Bango
Hehe. Yeah I already beat ya to it. Thats exactly where I found it and had pretty much the same code as what you put. :o) Thanks for the help Matt. Rey... Matt Stith wrote: > Check out the 'selectors' page in the docs. > > http://docs.jquery.com/DOM/Traversing/Selectors > > * [EMAIL PROTE

Re: [jQuery] Need some guidance...

2007-03-05 Thread Rick Faircloth
Hmmm… can’t get any reaction from the validation code. Here’s my script and html… what’s wrong with it? (I’ve included my show/hide script and my CalculateMortgage script in case there’s a conflict) The Mortgage Calculation still runs fine, but when I submit the form without an entry I get a CF e

Re: [jQuery] What is the difference in functionality between bind() and click/blur/keyup/etc()?

2007-03-05 Thread Karl Rudd
The click, blur, keyup, etc functions are just shortcuts. So instead of: $(...).bind( 'click', function... you can write: $(...).click( function... Karl Rudd On 3/6/07, Daemach <[EMAIL PROTECTED]> wrote: > > > -- > View this message in context: > http://www.nabble.com/What-is-the-differen

Re: [jQuery] Finding an element based on a partial string

2007-03-05 Thread Rey Bango
Great try Kenneth! Its pretty near what I did! Rey... Kenneth wrote: > I'll give it a newbie try! > > $('[EMAIL PROTECTED]').(...); > > or maybe: > > $('[EMAIL PROTECTED]', '#cart').(...); > > Just guessing here though. > > On 3/5/07, *Rey Bango* <[EMAIL PROTECTED]

[jQuery] What is the difference in functionality between bind() and click/blur/keyup/etc()?

2007-03-05 Thread Daemach
-- View this message in context: http://www.nabble.com/What-is-the-difference-in-functionality-between-bind%28%29-and-click-blur-keyup-etc%28%29--tf3352982.html#a9324408 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing lis

Re: [jQuery] What is the difference in functionality between bind() and click/blur/keyup/etc()?

2007-03-05 Thread Chris Domigan
There is no difference. click(), keyup(), etc are just short cuts. Chris ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Best practices for reattaching behaviours todynamically loaded content?

2007-03-05 Thread Nedjo Rogers
Chris Domigan wrote: > I keep all my behaviours in separate functions. For instance if I had a > fancy table widget I'd have a function called initTable() that contained > the behaviour code. I'd call it initially upon page load, then call it > again when necessary if content has been updated via

Re: [jQuery] jcarousel issue

2007-03-05 Thread Marshall Salinger
I tried to pull up the image without the ";see|" at the end and I get a 404. That is probably why it is only showing the alt text. You probably have your images in a subdirectory and you need to change the path to reflect that. If you want to use the code as is, you need to name your thumbnail im

Re: [jQuery] jqModal r7 release!

2007-03-05 Thread Brice Burgess
Chris Domigan wrote: > Brice, > > re $.jqm.hash. I'm getting an error that there is no such property. > Doing an inspection of the object $.jqm in firebug shows only two > properties - .open and .close. > > Chris Chris, Are you using the r10 plugin (as mentioned in my early post)? :) ~ Brice

Re: [jQuery] jqModal r7 release!

2007-03-05 Thread Chris Domigan
Sigh... Sorry Brice, that's exactly it :) Chris ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jqModal and AJAX

2007-03-05 Thread Brice Burgess
Robert Vlaicu wrote: > I have a problem with rebinding jqModal when i load main content via ajax > i really run out of ideas jqModal is last version jquery the same > i whant to use the jqModal to load product description and the > produtas are loaded with ajax. > Robert, You'll want to use the

Re: [jQuery] jqModal r7 release!

2007-03-05 Thread Chris Domigan
Brice, The version linked to on your page is r9. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jqModal r7 release!

2007-03-05 Thread Chris Domigan
Sigh... And I just noticed the link to r10. One of those days ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] prependTo element's own parent

2007-03-05 Thread Oliver Boermans
Not tested - but I'm guessing something like this will work? $('elementtoappend').appendTo($(this).parent()); where 'elementtoappend' is the selector for the element you wish to insert. On 05/03/07, Seb Duggan <[EMAIL PROTECTED]> wrote: > I want to take an element, and prepend it to its own pare

Re: [jQuery] jqModal r7 release!

2007-03-05 Thread Brice Burgess
Dmitry Rudakov wrote: > Brice, > > Could you help me? > I regularly get an error in IE when my dialog (JQM) is showing: > "Can't move focus to the control because it is invisible, not enabled, or of > a type that does not accept the focus." > > In Firefox and Safari everything works without problem

Re: [jQuery] get class name

2007-03-05 Thread Klaus Hartl
Glen Lipka schrieb: > If the ID only has one class you can also say: > $("#myID[class=foo]").fadeOut(); > or > var theNode = $("#myID[class=foo]") That should read $("[EMAIL PROTECTED]")! -- Klaus ___ jQuery mailing list discuss@jquery.com http://jque

Re: [jQuery] prependTo element's own parent

2007-03-05 Thread Klaus Hartl
Oliver Boermans schrieb: > Not tested - but I'm guessing something like this will work? > > $('elementtoappend').appendTo($(this).parent()); > > where 'elementtoappend' is the selector for the element you wish to insert. > > On 05/03/07, Seb Duggan <[EMAIL PROTECTED]> wrote: >> I want to take an

[jQuery] does jQuery have any plugins for plotting chart and graph ?

2007-03-05 Thread mouqx xu
I find a char graph plotting library plotkit(http://www.liquidx.net/plotkit/) which is based on Mochikit. I wonder if jQuery has any similar plugins? ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] How to get the response text of an .ajax call?

2007-03-05 Thread dalvarado
Hi, Simple question. How do I get the response text of an ajax call? Right now, my call is returning an XMLHttpRequest object, but I don't know how to extract the plain text that I'm expecting. here's the code var responseData = $.ajax({ type: "POST",

Re: [jQuery] How to get the response text of an .ajax call?

2007-03-05 Thread Klaus Hartl
[EMAIL PROTECTED] schrieb: > Hi, > > Simple question. How do I get the response text of an ajax call? Right now, > my call is returning an XMLHttpRequest object, but I don't know how to > extract the plain text that I'm expecting. here's the code > > var responseData = $.ajax

Re: [jQuery] jQuery Browser Detection

2007-03-05 Thread Oliver Boermans
IE 5.5 appears to have partial or intermittent support for my jQuery scripts. Although full support would be great - I would prefer IE5.x didn't run my scripts at all than partially. Is there a reasonably straight forward method I could employ to lock out IE5 out of jQuery altogether? On 10/10/06,

Re: [jQuery] jQuery Browser Detection

2007-03-05 Thread Oliver Boermans
Perhaps a little JavaScript inserted with a conditional comment in the head of my document? Thoughts? On 06/03/07, Oliver Boermans <[EMAIL PROTECTED]> wrote: > IE 5.5 appears to have partial or intermittent support for my jQuery > scripts. Although full support would be great - I would prefer I

Re: [jQuery] jQuery Browser Detection

2007-03-05 Thread Klaus Hartl
Oliver Boermans schrieb: > Perhaps a little JavaScript inserted with a conditional comment in the > head of my document? > > > > Thoughts? Why don't you make it the other way round? -- Klaus ___ jQuery mailing list discuss@jquery.com http://jqu

[jQuery] carousel example with dynamic content via ajax

2007-03-05 Thread planner
Folks; I am trying to implement the carousel example with dynsmic content loading via ajax. The images I'm specifying in my version of the *.txt file are located in a directory in the root of my server. The problem is when the page loads, the images are not shown in the carousel: only the names

Re: [jQuery] jQuery Browser Detection

2007-03-05 Thread Oliver Boermans
Clever and almost perfect. IE 6 is rendering <--> visibly in the page. Thanks Klaus! On 06/03/07, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Why don't you make it the other way round? > > > > ___ jQuery mailing list discuss@jquery.com http://jquery.co

Re: [jQuery] jQuery Browser Detection

2007-03-05 Thread Oliver Boermans
As is IE 7. If I remove <--> it my JavaScript is also hidden from Firefox and friends :/ On 06/03/07, Oliver Boermans <[EMAIL PROTECTED]> wrote: > IE 6 is rendering <--> visibly in the page. ___ jQuery mailing list discuss@jquery.com http://jquery.com/

Re: [jQuery] jQuery Browser Detection

2007-03-05 Thread Karl Rudd
You could "cheat" and put something like this before the main jQuery code. if ( /MSIE [1-5]/.test(navigator.userAgent) ) jQuery = false; This works because the main jQuery code is surrounded with: if(typeof window.jQuery == "undefined") { } You would have to make sure the

Re: [jQuery] jQuery Browser Detection

2007-03-05 Thread Karl Rudd
Try: Karl Rudd On 3/6/07, Oliver Boermans <[EMAIL PROTECTED]> wrote: > As is IE 7. > > If I remove <--> it my JavaScript is also hidden from Firefox and friends :/ > > On 06/03/07, Oliver Boermans <[EMAIL PROTECTED]> wrote: > > IE 6 is rendering <--> visibly in the page. > > __

Re: [jQuery] jQuery Browser Detection

2007-03-05 Thread Karl Rudd
Err scratch that, last reponse of mine. That will hide it from every non-IE browser as well as IE < 6. Karl Rudd On 3/6/07, Karl Rudd <[EMAIL PROTECTED]> wrote: > Try: > > > > Karl Rudd > > > On 3/6/07, Oliver Boermans <[EMAIL PROTECTED]> wrote: > > As is IE 7. > > > > If I remove <--> it my Jav

<    1   2