[jQuery] Re: callbacks calling callbacks calling callbacks ....

2008-03-10 Thread Shawn
Thanks for the sample. I can see some potential for improving things. Though at this point it'll likely be a total rewrite of the drawing routines. (which may not be a large hit afterall - I was considering this to make use of the jQuery.data() capabilities and free up some funky code for

[jQuery] [jquery.form] file upload question

2008-03-10 Thread Dylan Verheul
I'm using the jquery forms plugin. Excellent stuff. One problem. In my PHP-framework, I autodetect ajax/xhr requests and use an appropriate layout. This fails when I build a form with file uploads (the iframe trick doesnt trigger the XHR call). Is there a way to know that the page was requested

[jQuery] Re: missing ; before statement in ui.tabs

2008-03-10 Thread andrea varnier
On 9 Mar, 17:16, eyal [EMAIL PROTECTED] wrote: Hello, For some reason i'm having missing ; before statement error when i'm running ui.tabs altough on the demo page it's run just fine. What do think might be the problem? Thanks! Eyal could you please post some of your code so we can see?

[jQuery] Re: display returned data from posting page

2008-03-10 Thread andrea varnier
On 9 Mar, 04:33, bwdev [EMAIL PROTECTED] wrote: I need to do a post and then have the posting page return some data into a var. I've tried a few things but can't seem to get it to work. Please see my pseudo code below. How can I have the posting page return data via json? hi, here it is

[jQuery] Re: missing ; before statement in ui.tabs

2008-03-10 Thread Klaus Hartl
I assume you downloaded the latest version? --Klaus On Mar 9, 5:16 pm, eyal [EMAIL PROTECTED] wrote: Hello, For some reason i'm having missing ; before statement error when i'm running ui.tabs altough on the demo page it's run just fine. What do think might be the problem? Thanks!

[jQuery] Re: Turning an object into simple string

2008-03-10 Thread ajpiano
i believe the canonical version of the JSON api is http://www.json.org/json2.js see if that helps you out --adam On Mar 7, 11:37 am, MorningZ [EMAIL PROTECTED] wrote: I've got an object in my javascript that keeps tracks of controls and their values and am trying to pass it to the server

[jQuery] Re: slidetoggle jumps in IE

2008-03-10 Thread rocksoup
unfortunately positioning them absolutely did not solve the problem either... On Mar 9, 5:27 pm, Chris J. Lee [EMAIL PROTECTED] wrote: Actually writing a style to show or hide them isn't as helpful as positioning them absolutely to the way far left - at least from my experiences. Correct me

[jQuery] Re: pack smaller than min?

2008-03-10 Thread Paul Marcotte
Thanks! I really missed that one... :P Paul On Mar 9, 3:52 pm, Ariel Flesler [EMAIL PROTECTED] wrote: That is if you gzip it. On 9 mar, 06:24, Paul Marcotte [EMAIL PROTECTED] wrote: Hi, I just noticed that the download for jquery-1.2.3.min.js is 52k, while pack is 29k. Shouldn't

[jQuery] Call a JQuery function

2008-03-10 Thread Pedro Oliveira
Hi Is it possible to call a JQuery function from a javascript function ? Can you show me the syntax ? Thanks Pedro

[jQuery] passing css to an ID via select/output

2008-03-10 Thread timfm
Hi All, I'm new here and to jQuery. Trying to get started by developing a typographic tools for visual designers learning CSS. I want to pass the value of option as font-family to a div. Here's what I have so far: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN

[jQuery] jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...

2008-03-10 Thread [EMAIL PROTECTED]
when i implement jCarousel with options wrap : 'both', vertical : true, scroll : 1 and call prev method this alert apear. I debg the script and discover that the back var in the pos method is not set to true... so. to make t work i change the script from: if (d == 0) { alert('jCarousel:

[jQuery] Re: callbacks calling callbacks calling callbacks ....

2008-03-10 Thread h0tzen
hi, i have similar problems like shawn: im requesting a service to return internet-sources for a specific media-type, e.g. video - amazon.de, amazon.com, imdb, ofdb, etc... then i trigger a service for each source, reading and parsing the source has a duration from 3-30 seconds so there is no

[jQuery] Re: jquery json and zend_json

2008-03-10 Thread Plant More Tree
Hi, I have tried the samething too by adding [] to the string but nothing is alerted too. Anyone please kindly advice here. thanks ! regards, Mark jforth-2 wrote: Hey thanks for the help... I add the [] to the string. I don't get the invalid label error but nothing is alerted ?

[jQuery] Dom manipulation with frames leaking divs

2008-03-10 Thread Zak
Take a look at the simple example below. The following divs are reported as leaked by Drip -- divdivdiv/div. These divs are not from my code but I did notice them in a function called clean in jquery core.js file1.htm src: frameset rows=* framespacing=0 border=false frameborder=0

[jQuery] Re: neewbe help, Bassistance Validation Plugin

2008-03-10 Thread Patrik Nikkanen
If you only want one balloon, then try something like this code. Only problem is that if the error changes while the user edits the inputs, the balloon won't change. You might be able to solve this with some function that updates the balloon on keyup events, or something similar. $(function()

[jQuery] Re: Trying to get a submit button to countdown before being enabled again

2008-03-10 Thread alan
Ok, as an extension of this problem, I also realized that the input forms themselves could still be submitted by hitting 'enter' (in safari), so I am trying to get htem to disable themselves, but for some unbelievably frustrating reason, they stay enabled: function

[jQuery] Snap to grid on BBC website

2008-03-10 Thread Rui Pacheco
Hi all I am currently evaluating the jQuery library, along with some other JS libraries for my company, and we decided to implement the same functionality the BBC homepage has. I managed to reproduce all the effects quite quickly apart from the snap to grid. Can anyone send me on the right

[jQuery] Re: Snap to grid on BBC website

2008-03-10 Thread Andy Matthews
iGoogle doesn't use jQuery. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rui Pacheco Sent: Monday, March 10, 2008 6:22 AM To: jQuery (English) Subject: [jQuery] Snap to grid on BBC website Hi all I am currently evaluating the jQuery

[jQuery] Re: Snap to grid on BBC website

2008-03-10 Thread Benjamin Sterling
Rui, Take a look at the ui.jquery.com site, and look at the sortable, that should be what you want. On 3/10/08, Rui Pacheco [EMAIL PROTECTED] wrote: Hi all I am currently evaluating the jQuery library, along with some other JS libraries for my company, and we decided to implement the same

[jQuery] Re: passing css to an ID via select/output

2008-03-10 Thread Richard D. Worth
Maybe you want: $(#bodyCopy).css(font-family, $(this).val()); Also, you don't have a /select before your /form. - Richard Richard D. Worth http://rdworth.org/ On Sun, Mar 9, 2008 at 10:27 PM, timfm [EMAIL PROTECTED] wrote: Hi All, I'm new here and to jQuery. Trying to get started by