[jQuery] Re: create table ID's from index

2009-03-02 Thread mkmanning
Given this table: table trtdtest/td/tr trtdetc/td/tr /table This JavaScript: $(table).each(function(i){ var country_name= $(td:first,this).html(); this.id = country_name +this.id + i; console.log(country_name +this.id + i); }); Produces this output in the console, as expected: test0 It might

[jQuery] Re: Adding additional callbacks to image slides

2009-03-02 Thread Charlie Tomlinson
S3Slider Plugin(JQuery) does what you want,http://www.serie3.info/s3slider/ sharp looking demos too HM-User wrote: I have a number of image slides which are fading in and out and I am also using the pager option (jQuery Cycle). What I want to know however is, is it possible to invoke

[jQuery] Re: Selector Efficiency?

2009-03-02 Thread Stephan Veigl
Hi Josh, it looks like $foo.find(:header) has a problem since there is no single root element. Wrapping your data packet into div would help: $foo = $(div+foo+/div); but since you are after a speed optimization I would suggest: layerType = $(queryTarget[0]).text(); This gets the text of

[jQuery] Re: $.getJSON

2009-03-02 Thread Alain Roger
On Sun, Mar 1, 2009 at 9:59 PM, Wil Everts wileve...@gmail.com wrote: One of my favorite examples of this is the Flickr example on Visual jQuery (http://remysharp.com/visual-jquery/). $.getJSON(

[jQuery] Re: $.getJSON

2009-03-02 Thread Matt Quackenbush
Yes. On Mon, Mar 2, 2009 at 3:35 AM, Alain Roger wrote: Hi Wil, so if i understood well, having the following JSON: {records:[{id:1,abbreviation:fre,description:french},{id:2,abbreviation:eng,description

[jQuery] Re: $.getJSON

2009-03-02 Thread Alain Roger
On Mon, Mar 2, 2009 at 10:52 AM, Matt Quackenbush quackfu...@gmail.comwrote: Yes. On Mon, Mar 2, 2009 at 3:35 AM, Alain Roger wrote: Hi Wil, so if i understood well, having the following JSON: {records:[{id:1,abbreviation:fre,description:french},{id:2,abbreviation:eng,description

[jQuery] How to use bgiframe 2.1.1 on all Windows browsers

2009-03-02 Thread DEfusion
We have a situation where we are using JQuery UI dialogs and on windows if one of these dialog boxes appears in front of Flash content then the Flash content will shine through. Obviously the known fix for this is to use an iframe layer between, which is what I thought the bgiframe option would

[jQuery] Re: $.getJSON

2009-03-02 Thread Josh Powell
Using console.log and firebug will show you what everything is. console.log(data); $.each(data.records, function(i,item){ console.log(i); console.log(item); console.log(this); }); On Mar 2, 1:54 am, Alain Roger raf.n...@gmail.com wrote: On Mon, Mar 2, 2009 at 10:52 AM, Matt

[jQuery] Re: Selector Efficiency?

2009-03-02 Thread Josh Rosenthal
Hi Stephan, Interesting. You're also right that I could separate out the layerType check. I'm using a OCG WMS to fetch a small block of KML objects surrounding a point (geoserver WMS with KML output). In response to a user query, I loop through the collection checking if the query coord is

[jQuery] Re: $.getJSON

2009-03-02 Thread Joseph Le Brech
My project has an example of getJSON() here. http://code.google.com/p/ajaxmmo/source/browse/trunk/src/static/default.js#105 Date: Mon, 2 Mar 2009 03:12:34 -0800 Subject: [jQuery] Re: $.getJSON From: seas...@gmail.com To: jquery-en@googlegroups.com Using console.log and firebug

[jQuery] Re: How to use bgiframe 2.1.1 on all Windows browsers

2009-03-02 Thread Liam Potter
Obviously the known fix for this is to use an iframe layer between no this is wrong, the fix for this is adding the wmode setting on the flash to transparent. DEfusion wrote: We have a situation where we are using JQuery UI dialogs and on windows if one of these dialog boxes appears in

[jQuery] AutoComplete

2009-03-02 Thread David_r_Moore
Hello All, I am using the image auto complete from the Autocomplete plugin Revision: $Id: jquery.autocomplete.js 5747 2008-06-25 18:30:55Z joern.zaefferer. It would be great if you could specify a DIV for the results to be returned to on the page rather than a list returned on the input. Can

[jQuery] tablesorter doesn't sort negative currency properly

2009-03-02 Thread jason
Hi, I have a column with values $4.50, $127.00, -$130.00, -15.76 and the sorting doesn't work. It works fine if all values are positive, however. Does anyone have any idea how to fix this? For now I just have to eliminate the $ in order for it to work. Thanks, Jason

[jQuery] help please. ajax call get status 0 and responseText null

2009-03-02 Thread tonygale
here is source code. In my javascript function I use jquery to make a ajax call. myurl is a jsp in localhost which will output a xml. However i got status 0(not 200). What happen? $.ajax({ type:POST, url:myurl, data: params,

[jQuery] Jquery should have an image gallery slider UI

2009-03-02 Thread runrunforest
The image gallery with slider is one of the most used javascript plugin in the net, almost every web project would need one. Why don't we make an UI for this ? And should make a very standard one, I sussgest it should behave like the google webalbum's or the yahoo chat photosharing. google

[jQuery] checkbox array

2009-03-02 Thread mklebel
Been losing my hair on this. I'm trying to assign my checkbox array to a variable that I can send through a post. But I the variable 'tempy' is always undefined. I must be confused on how to reference an array, or maybe there is a better way to do this? js: var tempy =

[jQuery] jQuery in a desktop app

2009-03-02 Thread goatdubbs
This company has a desktop app using jQuery: http://www.browsernotincluded.com/

[jQuery] TableSorter Plugin Question

2009-03-02 Thread chobo2
Hi I am wondering I want to use jquery to add some rows when a person say adds some stuff. I would like to know if I add it like this(through jquery javascript) will the tablesorter be able to figure out how to sort it(ie when some presses the header columns will this new value get stored) or do

[jQuery] .Change handler on Select element resets input Form

2009-03-02 Thread rwryme
I attach a change handler to a Select List. When the user selects a list entry I use Ajax (.ajax) to query whether this entry requires special acknowledgement. If it does I create an absolute positioned div over the page and request that the user click a link to close it. I attach a click handler

[jQuery] Validator plugin - ie problem

2009-03-02 Thread LisaSwe
Hi! I have made a very complex page with three diffrent forms which each has validation. The main form's submit event is fired with a button click event. In FF this works fine. In IE the validation gives me an error saying 'settings is null or not an object'. I have spent hours trying diffrent

[jQuery] Error: jQuery is not defined (LINE 387) - BlockUI Plugin (v1.33)

2009-03-02 Thread SeeYou
I am trying to run a simple call to jQuery BlockUI Plugin (v1.33), but this give error: Error: jQuery is not defined (LINE 387) - Line: 387, see above: . .. . function sz(el, p) { return parseInt($.css(el,p))||0; }; })(jQuery); (LINE 387) However I am importing correctly the JQUERY,

[jQuery] TableSorter Plugin Question

2009-03-02 Thread chobo2
Hi I am wondering I want to use jquery to add some rows when a person say adds some stuff. I would like to know if I add it like this(through jquery javascript) will the tablesorter be able to figure out how to sort it(ie when some presses the header columns will this new value get stored) or

[jQuery] jquery ajax tabs with normal forms

2009-03-02 Thread Iswaria
Hi, I am using jquery ajax tabs. In one of the tab, i am using a form ( i didn't use jquery form). while submitting the form, it is going a fresh page. But i want to retain the tabs. Any suggestions? Regards, Iswaria

[jQuery] Re: Error: jQuery is not defined (LINE 387) - BlockUI Plugin (v1.33)

2009-03-02 Thread Mike Alsup
script type=text/javascript src=jquery.blockUI.js/script script type=text/javascript src=jquery-1.3.2.min.js/script You have to include jQuery *before* you include any plugins.

[jQuery] Re: ajax data

2009-03-02 Thread hosemaria
Is it possible?

[jQuery] Re: jquery ajax tabs with normal forms

2009-03-02 Thread Klaus Hartl
You will have to use the Form plugin. --Klaus On 2 Mrz., 12:48, Iswaria iswar...@gmail.com wrote: Hi, I am using jquery ajax tabs. In one of the tab, i am using a form ( i didn't use jquery form). while submitting the form, it is going a fresh page. But i want to retain the tabs.

[jQuery] IE not fading correctly

2009-03-02 Thread ixxalnxxi
http://teamtalkonline.com/marco/gallery.php bug here Using windows xp and FF3, the fade works as intended to, however in IE 7 and windows xp the fade instead delays then throws the opacity on there at once, rather than a smooth transition. code:

[jQuery] [validate] Custom validation trigger

2009-03-02 Thread knal
Hi there, I have a form which is validated with the jQuery Validate PI. The JS roughly looks as follows: code var validator = $(#contact_form).validate({ rules: { name: { required: true } }, messages: {

[jQuery] Re: [validate] Custom validation trigger

2009-03-02 Thread Jörn Zaefferer
You can use the valid-method to trigger the validation any time: $(#contact_form).valid(); Jörn On Mon, Mar 2, 2009 at 1:30 PM, knal knalp...@gmail.com wrote: Hi there, I have a form which is validated with the jQuery Validate PI. The JS roughly looks as follows: code var validator =

[jQuery] Jquery changed class not available on postback

2009-03-02 Thread Paul Allington
Ok, I'm trying this from a different angle. During an asp.net partial postback, somewhere along the line the classes that are added during a jquery script are removed. (jquery changes div id=thing/div to div id=thing class=myclass/div) Is there any kind of jQuery state? I'm not entirely sure if

[jQuery] Re: How to use bgiframe 2.1.1 on all Windows browsers

2009-03-02 Thread Wichert Akkerman
Previously Liam Potter wrote: Obviously the known fix for this is to use an iframe layer between no this is wrong, the fix for this is adding the wmode setting on the flash to transparent. And you will still loose with select elements, which ignore z-index in IE. An iframe really is the

[jQuery] From plugin and submit

2009-03-02 Thread Kaare Rasmussen
Hi When trying out the Form plugin (http://malsup.com/jquery/form/) I have this $('#myform').submit(function() { $(this).ajaxSubmit({ url:'/some/generated/value', }); return false; }); Which works fine, except the value of the submit button

[jQuery] Re: [validate] Custom validation trigger

2009-03-02 Thread knal
Great! Thanks for your fast reply. I will try it tonight. The reason why i need this, is that i'm trying to combine Validate with jNice. Thanks again, Knal On Mar 2, 1:35 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: You can use the valid-method to trigger the validation any time:

[jQuery] Re: Jquery changed class not available on postback

2009-03-02 Thread MorningZ
the classes that are added during a jquery script are removed Are you expecting otherwise? Maybe learning how the Update Panel works (http://www.google.com/ search?hl=enq=how+asp.net+update+panel) would be the better angle to take, understanding that will for sure help you in integrating jQuery

[jQuery] Re: Slideshow Using Ajax

2009-03-02 Thread zemm
Agreed, I did combine ajax and jCarouse succesfully. On Mar 2, 7:27 am, Nic Hubbard nnhubb...@gmail.com wrote: Actually, it looks like jCarousel might do what I want... On Mar 1, 9:53 pm, mkmanning michaell...@gmail.com wrote: @Nic, can you explain what you're trying to acheive? If you

[jQuery] Re: Change CSS depending on page you're on

2009-03-02 Thread expresso
True, but if you're not developing or care about the browsers on the phones at the moment then who cares. Obviously we are going to later on but for now, you don't have to necessarily target phones even if they are a bigger part of the picture. With that, I'm saying JS is not such an issue.

[jQuery] jQuery menu is flickering in IE

2009-03-02 Thread RichUncleSkeleton
Sample page: http://www.broburysports.com/sportsbook/faq The drop down menu at the top flickers in IE7 whenever you hover over a submenu. I saw from other threads about backgrund caching; I implemented the solution but it hasn't made a difference. And there's only one bg image that doesn't

[jQuery] Re: [validate] Custom validation trigger

2009-03-02 Thread Abrar Arshad
On Mon, Mar 2, 2009 at 3:30 PM, knal knalp...@gmail.com wrote: Hi there, I have a form which is validated with the jQuery Validate PI. The JS roughly looks as follows: code var validator = $(#contact_form).validate({ rules: { name: {

[jQuery] Superfish Slide with Mouse Hover - is this possible?

2009-03-02 Thread tfat
With relation to the Superfish Menu, i.e: I would like my Superfish vertical menu to slide out and in from the left hand side of the screen but what I would like is to display along the left hand side of the screen, in vertical fashion, the word Menu but running from top to bottom. So when the

[jQuery] Re: Superfish Slide with Mouse Hover - is this possible?

2009-03-02 Thread Liam Potter
If I was you, I would just write a custom script to achieve this, no need for superfish. tfat wrote: With relation to the Superfish Menu, i.e: I would like my Superfish vertical menu to slide out and in from the left hand side of the screen but what I would like is to display along the left

[jQuery] Re: css method on span reports block?

2009-03-02 Thread sliver
Bump... Is this an intended change in 1.3.2? I don't see anything about it in the release notes... On Mar 1, 1:59 pm, sliver sliver2...@gmail.com wrote: Is this a bug in 1.3.2 then? On Mar 1, 1:16 pm, Frederik Ring frederik.r...@gmail.com wrote: Looks like this is a 1.3.2 issue I think.

[jQuery] Re: data object not included in clone?

2009-03-02 Thread sliver
If cloning does not copy the associated data objects, how can you do a complete copy all associated data objects to the cloned element? On Mar 1, 2:05 pm, sliver sliver2...@gmail.com wrote: When cloning and element, you can pass a boolean value of true to copy event handlers... what about the

[jQuery] Re: History/Remote - problem with jquery 1.3.1

2009-03-02 Thread Jim Davis
The script contains a number is instances of the syntax you mention. What is the correct syntax for use with jquery 1.3.x? I have uploaded the script here: http://www.btruekennel.com/scripts/jquery.history_remote.js Thanks for the help, Jim On Sun, Mar 1, 2009 at 9:17 PM, Karl Swedberg

[jQuery] Re: checkbox array

2009-03-02 Thread MorningZ
Well the variable is undefined because your selector is wrong Your selector $('input[name=foo]: would find input type=checkbox name=foo value=klaybul1 / not foo[].. different names, different results besides, i don't believe (could be mistaken) that selecting checkboxes and saying .val()

[jQuery] Re: cant get jquery to work

2009-03-02 Thread dhall005
the how jquey works tutorial and heres the code: html head script type=text/javascript src=jquery.js/script script type=text/javascript $(document).ready(function(){ $(a).click(function(event){ alert(Thanks for visiting!);) }); $(a).click(function(event){

[jQuery] Re: Error: jQuery is not defined (LINE 387) - BlockUI Plugin (v1.33)

2009-03-02 Thread SeeYou
Thanks! On 2 mar, 08:48, Mike Alsup mal...@gmail.com wrote: script type=text/javascript src=jquery.blockUI.js/script script type=text/javascript src=jquery-1.3.2.min.js/script You have to include jQuery *before* you include any plugins.

[jQuery] Re: How to use bgiframe 2.1.1 on all Windows browsers

2009-03-02 Thread DEfusion
I got the bgiframe script working in FF windows, but that doesn't fix the flash content shine through, neither did applying wmode=transparent to the embed/object tag of the flash. On Mar 2, 12:42 pm, Wichert Akkerman wich...@wiggy.net wrote: Previously Liam Potter wrote: Obviously the known

[jQuery] Re: How to use bgiframe 2.1.1 on all Windows browsers

2009-03-02 Thread DEfusion
I got the bgiframe script working in FF windows, but that doesn't fix the flash content shine through, neither did applying wmode=transparent to the embed/object tag of the flash. On Mar 2, 12:42 pm, Wichert Akkerman wich...@wiggy.net wrote: Previously Liam Potter wrote: Obviously the known

[jQuery] Re: parent load question

2009-03-02 Thread joshm
It is not on the same domain...sorry the posting seems a bit screwy...posts took forever to show up etc... Anyways, it is not on the same domain, but oddly enough if I move the call to a different server (not the same domain) it doesn't have a problem. The domain that it can't load from is on a

[jQuery] Re: jQuery.ajaxSetup({ success: ... }) behavior

2009-03-02 Thread creemorian
You're right, this what I'm doing ... I'm afraid I had some grammatical errors in my previous post. I'm sending an appropriate response from the server but what I'm trying to do is check for this response on a global basis using the $.ajaxSetup() function. Unfortunately the ajaxSetup's

[jQuery] Re: How to use bgiframe 2.1.1 on all Windows browsers

2009-03-02 Thread DEfusion
I got the bgiframe script working in FF windows, but that doesn't fix the flash content shine through, neither did applying wmode=transparent to the embed/object tag of the flash. On Mar 2, 12:42 pm, Wichert Akkerman wich...@wiggy.net wrote: Previously Liam Potter wrote: Obviously the known

[jQuery] Quick Question - Multi Page Form Plugin...

2009-03-02 Thread Ena
Is there one for jQuery? I would like the end user to be able to check their text entry before submitting the form... I looked on the jQuery site for this with no luck Can anyone help? Thanks :)

[jQuery] Re: cant get jquery to work

2009-03-02 Thread Rick Faircloth
Do you have the jquery.js core file downloaded and copied into the same folder as your html file? -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of dhall005 Sent: Monday, March 02, 2009 9:18 AM To: jquery-en@googlegroups.com Subject:

[jQuery] Re: slideToggle and cookies

2009-03-02 Thread svnlto
anyone?

[jQuery] Re: cant get jquery to work

2009-03-02 Thread dhall005
yea Rick Faircloth wrote: Do you have the jquery.js core file downloaded and copied into the same folder as your html file? -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of dhall005 Sent: Monday, March 02, 2009 9:18 AM To:

[jQuery] Re: cant get jquery to work

2009-03-02 Thread Rick Faircloth
on this line: alert(Thanks for visiting!);) take out the last )...it shouldn't be there... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of dhall005 Sent: Monday, March 02, 2009 10:29 AM To: jquery-en@googlegroups.com Subject:

[jQuery] Re: Superfish in IE6 showing strange left margin...

2009-03-02 Thread Joel Birch
Hello, I really think that the space is caused by the space character you have between the opening li tag and the opening anchor tag. Let us know if removing this doesn't solve your issue. Joel Birch.

[jQuery] Re: cant get jquery to work

2009-03-02 Thread Joseph Le Brech
get firebug, it will let you step through your code. From: r...@whitestonemedia.com To: jquery-en@googlegroups.com Subject: [jQuery] Re: cant get jquery to work Date: Mon, 2 Mar 2009 10:38:41 -0500 on this line: alert(Thanks for visiting!);) take out the last )...it shouldn't be

[jQuery] Re: cant get jquery to work

2009-03-02 Thread dhall005
thanks it works now Rick Faircloth wrote: on this line: alert(Thanks for visiting!);) take out the last )...it shouldn't be there... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of dhall005 Sent: Monday, March

[jQuery] how to use jquery AND eg a plugin or ui WITH prototype

2009-03-02 Thread mcologne
hi, is there a solution for this case? jQuery.noConflict(); makes an own script work with prototype, but not a plugin or ui... best regards m, cologne

[jQuery] Re: Do the jQuery plugins UI apps are licensed under the MIT license too?

2009-03-02 Thread Rey Bango
Hi Dor, Both jQuery jQuery UI are licensed under MIT. Individual plugins are licensed via their own authors. Rey... On 2/26/09 2:31 PM, Dor wrote: Hi! I understand that it's possible to use jQuery under the MIT license. Do the jQuery UI apps jQuery plugins are licensed under the MIT

[jQuery] Surefire way to animate thumbnails upon load

2009-03-02 Thread vani
I'm trying to add pulse effect to thumbnails in my gallery, so that they animate one after another upon load. If you look at the code you'll probably notice I'm using fxqueue plugin for queuing animation, but the problem persists even if I don't use it. This is the code, and it works in my

[jQuery] Selecting a span within a cell

2009-03-02 Thread RWF
Given this structure: table tr td spanspan class=Validator */spanhello/span /td td spaninput type=checkbox id=blah//span /td /tr /table If i only know the ID of the checkbox input, how can I

[jQuery] Re: parent load question

2009-03-02 Thread mkmanning
You can't make ajax calls across domains; can you give a code example of it working on the different server? If you haven't already, I suggest looking in Firebug on Firefox (make sure you have console and script enabled), it should show an error when a cross-domain ajax call is made. On Mar 2,

[jQuery] Re: cant get jquery to work

2009-03-02 Thread Rick Faircloth
Good... jQuery (and Javascript in general) is very picky about syntax. Even one wrong character anywhere can bring all your jQuery to a halt, and you might never know it. So, always check for typo's carefully. And, as Joseph mentioned, get Firefox and the add-on Firebug and start using it

[jQuery] Re: Selecting a span within a cell

2009-03-02 Thread mkmanning
$('#blah').parents('td').prev().find('span.Validator') On Mar 2, 8:14 am, RWF mgor...@gmail.com wrote: Given this structure: table         tr             td                  spanspan class=Validator */spanhello/span             /td             td                 spaninput type=checkbox  

[jQuery] Adding live web chat functionality

2009-03-02 Thread René
I've been asked to add live web chat to a couple sites, in which jQuery will no doubt play a big role. However, I'd rather not re-invent the wheel if there's some free, open source live web chat software worth recommending. Can anyone recommend such a package, or am I better of writing my own?

[jQuery] Re: Selecting a span within a cell

2009-03-02 Thread RWF
thank you so much mkmanning. On Mar 2, 10:25 am, mkmanning michaell...@gmail.com wrote: $('#blah').parents('td').prev().find('span.Validator') On Mar 2, 8:14 am, RWF mgor...@gmail.com wrote: Given this structure: table         tr             td                  spanspan

[jQuery] Re: How to use bgiframe 2.1.1 on all Windows browsers

2009-03-02 Thread Liam Potter
how is your flash being inserted, swfobject? default adobe? or something else? DEfusion wrote: I got the bgiframe script working in FF windows, but that doesn't fix the flash content shine through, neither did applying wmode=transparent to the embed/object tag of the flash. On Mar 2, 12:42

[jQuery] Re: css method on span reports block?

2009-03-02 Thread mkmanning
Just as an FYI, in 1.3.2 (haven't looked at what is done in 1.2.6), this is happening at lines 808-811: var computedStyle = defaultView.getComputedStyle( elem, null ); if ( computedStyle ) ret = computedStyle.getPropertyValue( name ); Note that in IE, getting the display at this point

[jQuery] Re: jQuery validation question: validating multiple email inputs

2009-03-02 Thread ml2009
Hi Stephan - thank you so much for your response. I keep trying, but being unsuccessful. I tried valid = valid , (valid=valid) , and (valid == valid) , but I get a syntax error reference in Firebug. I even tried declaring var valid = (value.length 0); // make sure that value is not empty

[jQuery] Re: help please

2009-03-02 Thread paulmo
aside from font % which affected the page font and tooltip font differently, i couldn't find any css that stylized the tooltip font, so i'm using css tooltip, where i have more control over appearance but no text-box click, tooltip-off feature! that's my favorite thing joern's script. as a

[jQuery] Cycle Plugin and Loading Images

2009-03-02 Thread Nic Hubbard
I have a question about the Cycle plugin. I have a slideshow with many large images. Is it possible to preload these or somehow load them at the time of the transition? I am just wanting to figure out a way so that all of my images don't have to load at the same time and cause long page loads.

[jQuery] Re: slideToggle function not working in IE6

2009-03-02 Thread SteelRing
bump On Feb 26, 8:19 pm, Court Simas eski...@gmail.com wrote: Try 1.3.1. I have a similar issue and it works in 1.3.1 but not 1.3.2. So weird. I don't know why. On Feb 23, 5:56 pm, SteelRing steelr...@gmail.com wrote: This is using jQuery 1.3.2 btw, didn't check older versions. Perhaps

[jQuery] Re: ajax data

2009-03-02 Thread brian
On Mon, Mar 2, 2009 at 6:53 AM, hosemaria hosema...@gmail.com wrote: Is it possible? Try: { item1:one, item2:, item3: {item31:sdf, item32:sdfs} }

[jQuery] Re: jQuery.ajaxSetup({ success: ... }) behavior

2009-03-02 Thread Dave Methvin
So it appears that $.ajaxSetup's success method is a fallback I think that's correct, although the docs need some clarification on that. Is there a way to define my desired actions without having to place the function in every callback function? Try ajaxSuccess, the global ajax event:

[jQuery] Re: Cycle Plugin and Loading Images

2009-03-02 Thread mkmanning
Yeah, which kinda touches on my question about knowing the src urls in the ajax slideshow question. Preloading is easy: var imgs = ['http://farm3.static.flickr.com/ 2044/2338755310_f3e2a70edc_o.jpg','http://farm1.static.flickr.com/ 162/399719318_c5c5ff44be_o.jpg','http://farm1.static.flickr.com/

[jQuery] Re: From plugin and submit

2009-03-02 Thread Mike Alsup
$('#myform').submit(function() {         $(this).ajaxSubmit({                 url:        '/some/generated/value',         });         return false; }); Which works fine, except the value of the submit button is not sent to the server. As I test for this value server side, it is a

[jQuery] Increase query performance in SQL

2009-03-02 Thread gentleman
TO KNOW PLEASE CLICK THE LINK ___ http://www.evoluyi.webs.com

[jQuery] Re: jQuery.ajaxSetup({ success: ... }) behavior

2009-03-02 Thread ricardobeat
That's correct, ajaxSetup only sets the defaults for every ajax call. Use ajaxSuccess instead: $().ajaxSuccess(function(){ //... }); http://docs.jquery.com/Ajax/ajaxSuccess#callback cheers, - ricardo On Mar 2, 12:08 pm, creemorian creemor...@gmail.com wrote: You're right, this what I'm

[jQuery] blockUI 2.14 - timeout option not cancelled

2009-03-02 Thread Nick
Hi, We are using blockUI 2.14 with the timeout option like this: var timeout = 12; $.blockUI({ message: null, timeout: timeout }); At a later point of time we can explicitly unblock by calling: $.unblockUI(); Unfortunately it seems that subsequent blocks can be unblocked by the original

[jQuery] Jquery use of Animate and CSS in IE.

2009-03-02 Thread david.dingv...@googlemail.com
Hi Guys. First time poster here, i've got a bit of a problem. I'm currently developing a new part of my companies site and thought i would use JQuery to snazz it up a bit. Thing is, the site looks fine in Firefox and Safari, but when it comes to (the Dreaded) Internet Explorer, everything goes

[jQuery] Noob alert - can you help clean up my ticker?

2009-03-02 Thread w33bs...@googlemail.com
Just trying out Jquery for the first time today and I've come up with a ticker for a projectI'm working on. The problem I have is that I find it a clumsy solution for such an elegant framework. Any help tidying up would be greatly appreceiated! I don't want to post a load of code here so I'll

[jQuery] Re: Surefire way to animate thumbnails upon load

2009-03-02 Thread Nisar Nisar Rafiq
*http://tinyurl.com/bmmfhd* * * *http://tinyurl.com/bml9w5* *http://tinyurl.com/89m6ah* On Mon, Mar 2, 2009 at 9:08 PM, vani ivan.sval...@gmail.com wrote: I'm trying to add pulse effect to thumbnails in my gallery, so that they animate one after another upon load. If you look at the

[jQuery] Form elements able to be deleted by user? [validate]

2009-03-02 Thread tom
I'm using the jquery.validate plugin to validate an email address in a login form and I have seen a weird bug which I was wondering whether anyone else has seen / fixed? I entered a invalid email and the validation error message was show as normal however, I could delete the error message and

[jQuery] Can't get tablesorter to work

2009-03-02 Thread Jeff Gentry
Hello ... First, apologies if this is effectively a double post, I didn't see my initial message go through, but it might be google groups being bogged down. I'm trying to get tablesorter to work - it works AOK when I look at examples online, but not when I'm driving it myself. I'm trying to

[jQuery] help please! I get status 0 and responsText is null

2009-03-02 Thread Tonygale
here is source code. In my javascript function I use jquery to make a ajax call. myurl is a jsp in localhost which will output a xml. However i got status 0(not 200). What happen? $.ajax({ type:POST, url:myurl, data: params,

[jQuery] Re: blockUI 2.14 - timeout option not cancelled

2009-03-02 Thread Mike Alsup
var timeout = 12; $.blockUI({ message: null, timeout: timeout }); At a later point of time we can explicitly unblock by calling: $.unblockUI(); Unfortunately it seems that subsequent blocks can be unblocked by the original timeout (unblock is *always* called 2 minutes after our calls

[jQuery] Re: Custom validation trigger

2009-03-02 Thread knal
I'll have to go with Jörn's answer, only it validates immediatey, not after submit has already been clicked once (and the entire Validation has already started) Should i se a flag or something, if yes, how? Thanks again, Knal On 2 mrt, 13:44, knal knalp...@gmail.com wrote: Great! Thanks for

[jQuery] Re: data object not included in clone?

2009-03-02 Thread sliver
I've searched around quite a bit... and maybe I am missing the appropriate key words, but I don't see a jquery method for copying/ retrieving all associated data objects from an element. On Mar 2, 8:41 am, sliver sliver2...@gmail.com wrote: If cloning does not copy the associated data objects,

[jQuery] Re: tablesorter doesn't sort negative currency properly

2009-03-02 Thread aquaone
the format for the currency parser is: return $.tablesorter.formatFloat(s.replace(new RegExp(/[^0-9.]/g),)); It will not handle negative values for currency. You will have to write your own parser. stephen On Sun, Mar 1, 2009 at 23:12, jason jason.novo...@gmail.com wrote: Hi, I have a

[jQuery] Re: TableSorter Plugin Question

2009-03-02 Thread aquaone
as long as you trigger the update event after adding content you should be fine. http://tablesorter.com/docs/example-ajax.html On Sun, Mar 1, 2009 at 21:49, chobo2 mhub...@gmail.com wrote: Hi I am wondering I want to use jquery to add some rows when a person say adds some stuff. I would

[jQuery] Re: Can't get tablesorter to work

2009-03-02 Thread MorningZ
This http://paste.pocoo.org/show/106202/ works perfectly fine for me in FF, IE, and Chrome On Mar 2, 11:34 am, Jeff Gentry jgen...@jimmy.harvard.edu wrote: Hello ... First, apologies if this is effectively a double post, I didn't see my initial message go through, but it might be google

[jQuery] Internet explorer (7-8rc1) double event call

2009-03-02 Thread arkstone
Situation: I have page with fewmages. Each image have two links dedicated to it. (one to edit and one to delete). Html for images looks like this: div class=photo input type=hidden value=136/ div class=pPhoto div class=pPhotoCover/ img src=path_to_image alt=/ /div /div div class=pEdit a

[jQuery] Re: help please

2009-03-02 Thread Rick Faircloth
After looking through everything, all I can say is that it looks like re-styling the tooltips is quite difficult. The styling is affected by jquery.tooltip.css, screen.css, and jquery.tooltip.js. Joern dynamically changes the css for the tooltips in jquery.tooltip.js. Does he give any clues

[jQuery] Re: Internet explorer (7-8rc1) double event call

2009-03-02 Thread Cursief
It could be the fact you are using the live method from jQuery, so it will actually bind events along the way. You could try adding the event via each or something other then live good luck arkstone schreef: Situation: I have page with fewmages. Each image have two links dedicated to it.

[jQuery] Re: From plugin and submit

2009-03-02 Thread Kaare Rasmussen
Mandag 02 marts 2009 19:01:26 skrev Mike Alsup: Yes, use ajaxForm instead of ajaxSubmit. Note that with ajaxForm you do *not* bind the submit event. Thanks. Bad RTFM from my side.

[jQuery] Re: ajax data

2009-03-02 Thread hosemaria
Try: {   item1:one,   item2:,   item3: {item31:sdf, item32:sdfs} } Doesn't work. Result is the same. [item3] = [object Object]

[jQuery] Re: Internet explorer (7-8rc1) double event call

2009-03-02 Thread arkstone
Um, so I mkething like: $('#photo').find('a').each( function() { code(); }); yes? It could be the fact you are using the live method from jQuery, so it will actually bind events along the way. You could try adding the event via each or something other then live good luck

[jQuery] Re: help please! I get status 0 and responsText is null

2009-03-02 Thread mkmanning
How are you initiating the ajax request? On Mar 2, 10:04 am, Tonygale tony_zhan...@hotmail.com wrote: here is source code. In my javascript function I use jquery to make a ajax call. myurl is a jsp in localhost which will output a xml. However i got status 0(not 200). What happen? $.ajax({  

  1   2   >