[jQuery] Ajax Spinner Question

2010-02-03 Thread West415
Hi, I'm pretty new to jquery and wanted to know how can I have a different ajax spinner/loader or maybe a dynamic one, that could accept a message as a parameter when it displays. I think one spinner that can accept a message as a parameter may be the best approach though now that I think of it

[jQuery] JQuery Developer

2010-02-03 Thread Madan
I am currently seeking a JQuery Developer with strong Javascript, HTML, CSS etc. This is a job with an enterprise level company in the peninsual (around Palo Alto). Please contact me ASAP. This position will move fast. Regards, Madan

Re: [jQuery] Fwd: Multiple file upload + flash component

2010-02-03 Thread D A
>  I am looking for a multifile uploader with html or jsp not with php. This > should be allowed to select the multiple files from the file selector. I am > sure that we can do that using the flash component. I am not familiar with > flash. I am using the multifile uploader from Jquery already. > A

[jQuery] Fwd: Multiple file upload + flash component

2010-02-03 Thread jayakumar ala
Any help is appreciated. -- Forwarded message -- From: jayakumar ala Date: Mon, Feb 1, 2010 at 8:34 AM Subject: Multiple file upload + flash component To: jquery-en@googlegroups.com Hi , I am looking for a multifile uploader with html or jsp not with php. This should be all

[jQuery] 1.4 issues using .is()

2010-02-03 Thread D A
I have this that has worked just fine in 1.3.2: if($(this).is('li')){ ...do something... }; In 1.4 (and 1.4.1), however, that produces an error: "g.nodeName is undefined" The only mention I found of this is here: http://forum.jquery.com/topic/window-is-div-returns-erro

[jQuery] Jquery Image Rotator Question

2010-02-03 Thread Jacques
My company has suggested that we replace all our flash based image rotators with jquery versions. I have used Jquery cycle before http://www.malsup.com/jquery/cycle/download.html But have a question Do these plugins allow the images to be downloaded after the page has rendered? Some of our

[jQuery] please test my link - takes only 2 secs

2010-02-03 Thread jquertil
Hello all, if you have 2 seconds to spare, please see http://www.tilmauder.com/as4/JS2ASinJquery.htm and send me errors you may (or rather hopefully WILL NOT) be getting. What's supposed to happen: the page displays an orange swf file with a dynamic text field. When you click the button at the

Re: [jQuery] Update div content after dynamic select creation

2010-02-03 Thread Nathan Klatt
On Wed, Feb 3, 2010 at 7:12 AM, Shinnuz wrote: > Database works, but if you see div#result doesn't update with "prova3"... > why? where i'm wrong? I do believe your problem is you're creating the nation select AFTER you've set the handler for the select. Move your declaration of $('#sel_nazioni')

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-03 Thread augur
Slick, and super fast. Makes it so that I do not even want to move onto JSON ;-)... (JK, my engineers are forcing me too) Made some minor mods, these add a little time and still processes over 50K lines in about 6-8 seconds, and 100K right about 10 seconds. Now everything is its own html object re

[jQuery] Re: JSON + variable

2010-02-03 Thread weidc
Well, wow thats nice! Thanks for your answer. Really awesome, I get an answer! But I have to use dataType: 'jsonp'. If I use dataType: 'json' the alert doesn't work. Oh my god it was so simple and I was thinking about it a million hours, thank you a lot. On 3 Feb., 17:25, rnivash wrote: > Hi m

[jQuery] Re: Is there have any JQuery plugin that can sort 1A,2A,3A,... 10A, 11A, 12A, 13A, 14A?

2010-02-03 Thread Scott Sauyet
On Feb 2, 10:37 am, HenryRock wrote: > I facing a problem in sorting : > > 1A,2A,3A,... 10A, 11A, 12A, 13A, 14A > [ ... ] > May I know is there have any plugin that can sort the sample data > above to 1A until 14A? Note that it's not hard to do this in Javascript, though: var sorter = (funct

[jQuery] Re: JSON + variable

2010-02-03 Thread rnivash
Hi mueller, The response is look like a function call. /* yasearch( { "q": "uboot", "f": ["k"], "r": [["uboote"], ["uboot chat"], ["ubootpc spiel"], ["uboot simulation"], ["modell uboot"], ["uboot hamburg"], ["uboot museum"], ["atom-uboot"], ["uboot ping"], ["rc ub

Re: [jQuery] Traversing to next class?

2010-02-03 Thread Nathan Klatt
On Tue, Feb 2, 2010 at 11:28 PM, Photonic wrote: > Now the problem I am having is with "  $(this).next > ('.textDescription').hide();   ". What am I doing wrong. I was under > the impression that it would select the next object with the class of > textDescription and hide it... but it isn't. You

Re: [jQuery] Cluetip with live

2010-02-03 Thread Cshamoh
I noe its ages old post but it still might be a help to someone. I wasnt diggin too much and im not sure if it is 100% correct fix but it works for me (hover activation). I have added this right after line 420 of jquery.cluetip.js $this.trigger('mouseenter.cluetip', function(event) {

[jQuery] Update div content after dynamic select creation

2010-02-03 Thread Shinnuz
I'm trying to create a page where onchange of first select it appears a second one (which values, readen from a database, depend on previous choise) and on choise of second select results are show in a div. Here some images: Start: http://img269.imageshack.us/i/senzanomejg.png/ http://img269.im

[jQuery] JSON + variable

2010-02-03 Thread weidc
Hello, well i got a problem with using JSON. My code looks like this: $(function() { $.ajax({ type:'GET', url: url, data:"format=json&id=123", success:function(data) { alert(data); // doesn't work