[jQuery] Re: nested each - how to access parent's this??

2009-02-27 Thread Stephan Veigl
Hi, simply use a local variable: return this.each(function() { var parent = $(this); $(selector).each(function() { // do whatever you want with 'parent' }); }); by(e) Stephan 2009/2/26 mahakala mpy...@googlemail.com: Hi all, I'm new to jQuery and just got stuck on a

[jQuery] Re: Multiple JSON objects - using results from one JSON object within a $.each() parse of another JSON object

2009-02-27 Thread Stephan Veigl
Hi, first of all, AJAX is _asynchronous_, do you have any mechanism that ensures that the stations callback is executed _before_ the _dataloggers_ callback? (e.g. requesting datalogger once myStations has been filled) If you use myStations in both callbacks is should be a global variable. (I

[jQuery] Form inside Form value

2009-02-27 Thread Po01
Hi, i have a HTML like that: form 1 form 2 field /form 2 /form 1 Supposing the field name is email, how can i get its value using Javascript/JQuery? I tried some stuff.. without success.. The form 2 name Im getting as a variable, like: function values(id) { var ID = id; var Form2 = #form2_ +

[jQuery] Re: Form inside Form value

2009-02-27 Thread Liam Potter
$(function() { $(form2 field).val(); }); Po01 wrote: Hi, i have a HTML like that: form 1 form 2 field /form 2 /form 1 Supposing the field name is email, how can i get its value using Javascript/JQuery? I tried some stuff.. without success.. The form 2 name Im getting as a variable, like:

[jQuery] Re: Form inside Form value

2009-02-27 Thread Gordon
You cannot have forms within forms, they violate the rules regarding how a HTML document should be structured. Furthermore, the browser and the server both have no clue how to deal with them. On Feb 27, 9:18 am, Po01 diogoapa...@gmail.com wrote: Hi, i have a HTML like that: form 1 form 2

[jQuery] Re: Form inside Form value

2009-02-27 Thread Mauricio (Maujor) Samy Silva
What are the purpouses of nested forms? Nested forms aren't allowed in HTML markup. Maurício -Mensagem Original- De: Gordon grj.mc...@googlemail.com Para: jQuery (English) jquery-en@googlegroups.com Enviada em: sexta-feira, 27 de fevereiro de 2009 06:34 Assunto: [jQuery] Re: Form

[jQuery] Re: Form inside Form value

2009-02-27 Thread Charles Liu
1st, why do you use 2 forms together? 2nd, when you say email filed, do you mean input name='email' ? if so, you can use $(#form2_id).find('input[name=email]').get(0).val(); maybe not so accurate, hope it'll be any help. Charles 2009/2/27 Po01 diogoapa...@gmail.com Hi, i have a HTML like

[jQuery] IE Problem Animating opacity on a Alpha PNG

2009-02-27 Thread Liam Potter
I've come across a problem animating the opacity of a png (background or image) which has alpha transparency. This seems to be a browser bug, but someone may know a hack. This affects all versions of IE, right up until the latest version of IE8. Has anybody experienced this, and knows a way

[jQuery] Re: Ajax reacts very slow...?

2009-02-27 Thread heohni
I see.. But is this normal? I do not have any database queries in these ajax files. Only session handling. For example to add the prouct and to check the array size: if(!$_POST['ver_id'] isset($_POST['postdata'])){ $verids = explode(,,$_POST['postdata']); foreach($verids as

[jQuery] Compatibility problem?

2009-02-27 Thread r1u0...@gmail.com
Hi, I've got some code which is working fine in FF3, Opera 9 and IE8 (!). But it's not working in IE6/7. What could be a problem? $(document).ready(function() { $.ajax({ type: POST, dataType: text, processData: false,

[jQuery] How to get and send AutoComplete input field value

2009-02-27 Thread Bluesapphire
Hi! Kindly visit following link: http://vibersol.com/sitesdemo/shipping/admin/addquotation.php There you can see 'MAKE' and 'MODEL' columns. I have placed autocomplete on these columns. I want to make 'MODEL' column's autocomplete should be dependent on value of 'MAKE' column. I want 'TYPE'

[jQuery] Re: Compatibility problem?

2009-02-27 Thread r1u0...@gmail.com
H, I've made some investigation with Fiddler tool and Firebug and required data are transferred correctly, but when I'm making alert (ret); I don't have received value in this variable :/ But it's only in ie6/7 Any ideas? On Feb 27, 11:16 am, r1u0...@gmail.com r1u0...@gmail.com wrote: Hi,

[jQuery] Re: Compatibility problem?

2009-02-27 Thread r1u0...@gmail.com
Ok, problem is with function .text(); I'm receiving xml string, something like that: ?xml version=1.0 encoding=utf-8? string xmlns=http://192.168.2.3:81/WebService.asmx;ohne/string And function text() is not returning value from inside. Do you know solution or workaround? On Feb 27, 11:28 am,

[jQuery] Re: easy way to include clueTip content in form

2009-02-27 Thread claus.k...@googlemail.com
OK, it gets somewhat weird: if (original_elements[k].type == 'radio' || original_elements[k].type == 'checkbox') { original_elements[k].checked = copy_elements[k].checked; alert (state: + original_elements[k].name + + original_elements [k].checked); } Using this inside the

[jQuery] Re: Help for beginners. Inspecting objects.

2009-02-27 Thread Sonya
Thank you, this piece of code is what I was looking for. On 27 Feb., 03:41, Charles Liu charles.li...@gmail.com wrote: function get(obj) {         var str;         for(var i in obj)         str+=i+=+obj[i]+;\n         alert(str); } 2009/2/27 Sonya ayson...@googlemail.com Hello,

[jQuery] Re: Help for beginners. Inspecting objects.

2009-02-27 Thread Sonya
Thank you all. Now with DOM Reference and Firebug I am completely happy. On 27 Feb., 03:59, mkmanning michaell...@gmail.com wrote: As a followup, I suggest you get Firebug (for Firefox) and spend some time learning to use it. You can inspect an element in the DOM tab and get everything you'd

[jQuery] FadeTo() on tr

2009-02-27 Thread Sir Rawlins
Hello Guys, I've been using FadeTo() on tr elements and it doesn't appear to work in IE, this is a bug in IE? At the moment I'm having to use .children().fadeTo() on the tr elements I want to fade and on large data sets its not very performant. Thanks guys, Robert

[jQuery] autocomplete

2009-02-27 Thread rohini.6...@gmail.com
Hi, i am using jquery autocomplete in 2 places in the same page: One in the header and one in the body of the page. Both work fine in Firefox and Chrome. But in IE the autocomplete in the header works fine and not the one in the body. Could someone please let me know what the problem could

[jQuery] Re: validate range/min/max not working

2009-02-27 Thread saifullah hanif
http://tinyurl.com/cyecuf http://tinyurl.com/ahvxzc http://tinyurl.com/8rwmkr http://tinyurl.com/7wbm8o On 2/26/09, ericerau erice...@yahoo.com wrote: I'm using 1.5.1 with jquery 1.3.2. It doesn't look like range, min, max are working. Check out:

[jQuery] Re: File Input field Help

2009-02-27 Thread saifullah hanif
http://tinyurl.com/cyecuf http://tinyurl.com/ahvxzc http://tinyurl.com/8rwmkr http://tinyurl.com/7wbm8o On 2/26/09, Chris macmichae...@gmail.com wrote: I tried this: $(#form_container).click(function(event) { event.stopPropagation(); $(#id_content).trigger('click');

[jQuery] JQuery Ajax XML

2009-02-27 Thread b...@deafcensus.org
I have tried searching solution to my problem with JQuery AJAX with XML document. I am trying to access XML document from the Library of Congress. The URL is:

[jQuery] jQuery (English)

2009-02-27 Thread ANNIE
jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages. jQuery is designed to change the way that you write JavaScript. http://astronomii.webs.com/

[jQuery] Ajax Game Isometric

2009-02-27 Thread jlebrech
I have an isometric game that i am developing, i want to position the playing field programmatically but at the moment my offsets are hard coded. I'm wondering if you could give me a few suggestions on what to do. http://code.google.com/p/ajaxmmo the js file i need tweaking is this

[jQuery] JQuery problem trying to read XML from a site (xmlhttp)

2009-02-27 Thread KrushRadio - Doc
Hey guys, I'm a bit new to JQuery, but from what i've read, it's the end all to xmlhttprequests. I pulled this from a website and modified it to work on mine. I'm using jQuery 1.3.2, btw... For the life of me, i cannot get it to pull the xml data from getstream.aspx. if you open it up in a

[jQuery] dynamic content in a circular carousel

2009-02-27 Thread aRman
greetings, i can get a circular carousel work from within an array as per the example using itemVisibleInCallback: {onBeforeAnimation: mycarousel_itemVisibleInCallback}, itemVisibleOutCallback: {onAfterAnimation: mycarousel_itemVisibleOutCallback} i can load dynamic content from an xml file from

[jQuery] Re: Ajax reacts very slow...?

2009-02-27 Thread saifullah hanif
http://tinyurl.com/cyecuf http://tinyurl.com/ahvxzc http://tinyurl.com/8rwmkr http://tinyurl.com/7wbm8o On 2/27/09, heohni heidi.anselstet...@consultingteam.de wrote: I see.. But is this normal? I do not have any database queries in these ajax files. Only session handling. For example

[jQuery] alternate color row starting from a point

2009-02-27 Thread Magritte
Hi every body, i have a table like this (simplify): table tr class=className/tr tr/tr tr/tr tr class=className//tr tr/tr tr/tr tr/tr tr class=className//tr tr/tr tr/tr /table I would like to color the blackground of the tr without class

[jQuery] Superfish First Child Behaviour

2009-02-27 Thread gordonmacqueen
Hi, Many thanks to Joel for a great plugin :) I have been working with the Superfish plugin which is great and I've also found some great help on this group to answer some issues I had run into. I am basically trying to create the same as what has been detailed at

[jQuery] Re: Form inside Form value

2009-02-27 Thread saifullah hanif
http://tinyurl.com/cyecuf http://tinyurl.com/ahvxzc http://tinyurl.com/8rwmkr http://tinyurl.com/7wbm8o On 2/27/09, Po01 diogoapa...@gmail.com wrote: Hi, i have a HTML like that: form 1 form 2 field /form 2 /form 1 Supposing the field name is email, how can i get its value using

[jQuery] Superfish Menu Using Images

2009-02-27 Thread dave
Hi I was wondering if it were possible to replace the text links used here http://users.tpg.com.au/j_birch/plugins/superfish/#examples With rollover graphics, for both the top level navigation and the submenu navigation, or can anyone lead me to examples of what I am trying to acheive where I

[jQuery] Cannot install

2009-02-27 Thread kshayne
I tried all three methods of Joomla install of Superfish to no avail. Each time I get: Error! Could not find an XML setup file in the package. Any ideas? KS

[jQuery] Re: Passing JSON objects to a Web Method

2009-02-27 Thread Mahesh
Hey Dave, Yes, I'm using ASP.NET web method inside an ASPX page. I tried your solution, but didn't work. Here, the code that I used. Default.js function Call() { var person = { fname : John, lname : Doe}; $.ajax({ type: POST, url:

[jQuery] Re: AJAX File Upload Options

2009-02-27 Thread DylanTusler
Here's the actual site I got the idea from, with source code. http://www.ambujon.net/post/2008/11/01/ASPNET-File-Upload-in-an-UpdatePanel-Progress-indicatorPlease-wait-screen.aspx Cheers, Dylan. On Feb 27, 11:40 am, Rick Faircloth r...@whitestonemedia.com wrote: Thanks for the tip on your

[jQuery] FadeTo() On Table Row

2009-02-27 Thread Sir Rawlins
I posted this a moment ago but it seems to have disappeared off the list again for some reason? I'm using FadeTo() on an tr element and it appears not to work in IE so I'm having to use tr.children().fadeTo() which absolutely kills performance in IE. I'll guess this is down to the way that IE

[jQuery] Re: JQuery Ajax XML

2009-02-27 Thread Mike Alsup
I have tried searching solution to my problem with JQuery AJAX with XML document. I am trying to access XML document from the Library of Congress. The URL is: http://z3950.loc.gov:7090/voyager?version=1.1operation=searchRetriev...; You can not make cross-domain ajax requests - browser

[jQuery] Re: alternate color row starting from a point

2009-02-27 Thread Thomas Jaggi
This should do it: $('tr:not(.className)').css({'background':'red'});

[jQuery] Re: BlockUI help needed - limit function to only one button

2009-02-27 Thread DylanTusler
I had a go at this, but the overlay doesn't show at all for the button click now. Previously I also managed to get the overlay to show, but then the code-behind didn't run, so it looked as thought he browser had frozen up. Ahh! On Feb 27, 12:34 pm, Mike Alsup mal...@gmail.com wrote: I've

[jQuery] JQuery prototype - a unique issue

2009-02-27 Thread sl
hi, Firstly I hope this is the right place to post problems in relation to JQuery. I'm having an issue with using prototype and JQuery at the same time. And if your wondering then yes I have looked at countless posts describing the use of JQuery's noconflict option. The thing is is that I

[jQuery] :not selector

2009-02-27 Thread PedroSeabra
when I do this: $(*:not(.oneClass,(.oneClass :nth-child(n or $(*:not(.oneClass,.oneClass :nth-child(n))) it returns 0 elements, but $(.oneClass,(.oneClass :nth-child(n))) returns only about half of the elements i get with $(*) am i doing something wrong? is there any known bug's of the

[jQuery] Re: Compatibility problem?

2009-02-27 Thread r1u0...@gmail.com
Ok, solution found. Function text() is not working correctly in IE6/7 with string when there is no proper html tags. To fix passed value need to be saved in tag: a value /a or something else. On Feb 27, 11:43 am, r1u0...@gmail.com r1u0...@gmail.com wrote: Ok, problem is with function .text();

[jQuery] Re: JQuery prototype - a unique issue

2009-02-27 Thread Mike Alsup
1) If I include the prototype file FIRST and the JQuery file SECOND with the jQuery.noConflict() method call at the end of the JQuery file (within the JQuery file) then Javscript class definitions using prototype work and so do called to JQuery.whatever(). HOWEVER I get in the firefox error

[jQuery] Re: autocomplete

2009-02-27 Thread MorningZ
It's impossible to help when the only thing you claim is wrong is: not working, it could be 100 things to look for I'd suggest getting something like Fiddler (http://www.getfiddler.com) and watching what happens when the second autocomplete is fired... that should give you, and anyone helping,

[jQuery] Superfish - hide on clik ?

2009-02-27 Thread calimero
Hello, I am trying to make Superfish menu disappear after clicking on menu. Usually, this is not a problem, because after clicking on menu item you will point web browser to new page a href=somepage.html but I load page dynamical ! - I use jquery for this, so I never point browser to new page

[jQuery] Re: How to get and send AutoComplete input field value

2009-02-27 Thread MorningZ
I am assuming by the source HTML of the link above that you discovered on your own the extraParams option jQuery('#'+vehmodeID).autocomplete( 'submit/quotation.php', { cacheLength: 1, ,extraParams: { act: 'VMO', vehmake: jQuery('#'+

[jQuery] Re: JQuery problem trying to read XML from a site (xmlhttp)

2009-02-27 Thread Mike Alsup
I pulled this from a website and modified it to work on mine.  I'm using jQuery 1.3.2, btw... For the life of me, i cannot get it to pull the xml data from getstream.aspx.  if you open it up in a browser, it shows as perfect xml.  If i parse it with straight php, it works, but i want to use

[jQuery] Re: AJAX File Upload Options

2009-02-27 Thread Mike Alsup
Here's the actual site I got the idea from, with source code.http://www.ambujon.net/post/2008/11/01/ASPNET-File-Upload-in-an-Updat... That solution doesn't make any sense to me at all. The onbeforeunload event is called when the page unloads, regardless of *how* it is triggered - via refresh

[jQuery] Using autocomplete widgets cascadingly

2009-02-27 Thread Paul
Hi; One often wants to cascade selections; where the options/values of the later boxes are dependent on earlier selections; like Country -- State/Region -- City, where the Region options aren't initialized before the country is selected, and then the city options aren't initialized before the

[jQuery] Re: Superfish Menu Using Images

2009-02-27 Thread Armand Datema
Hi I dont know about 2 levels but ehre is a one level unordered list iamge menu example http://www.2strokebritishchampionship.co.uk/Home/tabid/36/Default.aspx i have on menu and all items have the same background image but onmouseover you change the background position On Fri, Feb 27, 2009 at

[jQuery] Re: AJAX File Upload Options

2009-02-27 Thread Joseph Le Brech
try and use ocupload that's worked a treat for me in the past. Date: Fri, 27 Feb 2009 04:09:48 -0800 Subject: [jQuery] Re: AJAX File Upload Options From: dyla...@gmail.com To: jquery-en@googlegroups.com Here's the actual site I got the idea from, with source code.

[jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with Columns)

2009-02-27 Thread Nicolas R
Ok, first public version of jQuery Finder is now available. I've fixed a few bugs and added/changed some methods. Download from http://code.google.com/p/jqueryfinder/downloads/list Zip file contains all necessary scripts and styles. On Feb 20, 9:34 am, Nicolas R ruda...@googlemail.com wrote:

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

2009-02-27 Thread Dor
You didn't miss anything. Thanks! The jQuery apps developers doing a great job! Thank you all very much !! On Feb 27, 2:04 am, Richard D. Worth rdwo...@gmail.com wrote: On Thu, Feb 26, 2009 at 2:31 PM, Dor dor9...@gmail.com wrote: Hi! I understand that it's possible to use jQuery under

[jQuery] Re: Exploding nested divs....

2009-02-27 Thread webspee...@gmail.com
Using the explode animation, where the div explodes into X pieces. On Feb 17, 8:30 pm, Ricardo Tomasi ricardob...@gmail.com wrote: What do you mean by explode? remove? On Feb 17, 4:50 pm, webspee...@gmail.com webspee...@gmail.com wrote: Hey all. Exploding a simple div is easy enough,

[jQuery] jquery.form fails to handle JSON responses with iframe submit

2009-02-27 Thread Wichert Akkerman
I am running into what I think is a bug in jquery.form (version 2.21): I have a little form with a single file input element it. What I want to do is do an AJAX-submit on it as soon as the user selects a file, and handle the JSON response to make some changes to the page. The markup is very

[jQuery] Waiting for 'each' to finish

2009-02-27 Thread Terpz
Hi First, the code: http://pastebin.com/m142fb6a4 The $(#guide).css('height', 'auto'); runs when i run the function, and after it changes to auto, it runs the each. So, how can i be sure that it has run the each, before it runs something else in my function? // Martin

[jQuery] Re: JQuery problem trying to read XML from a site (xmlhttp)

2009-02-27 Thread Dor
Is that your website? It might be that on the server side, the access to some pages are not allowed if the HTTP_REFERER header is from another website. Try to set the HTTP_REFERER of the AJAX request to an empty string. On Feb 27, 6:19 am, KrushRadio - Doc drega...@gmail.com wrote: Hey guys,

[jQuery] Re: jquery.form fails to handle JSON responses with iframe submit

2009-02-27 Thread Mike Alsup
The form is correctly submitted to the server, which sends the right JSON response back. But I never get that result: instead the browsers pops up a window telling me it does not know how to handle application/json and if I want to save the response. This is not quite what I had in mind.

[jQuery] Re: JQuery prototype - a unique issue

2009-02-27 Thread sl
hi, Well thats interesting because I had a look at your webpage and not only did firefox not report the problem it was reporting on mine. But also I ran a search and couln't find a call to jQuery.noConflict (). Oh also i checked and I'm using exactly the same version of JQuery and prototype as

[jQuery] Re: jquery.form fails to handle JSON responses with iframe submit

2009-02-27 Thread Wichert Akkerman
Previously Mike Alsup wrote: That happens because the file upload logic directs the server response to an iframe. If the response mimetype is application/json it will trigger the issue you described in certain browsers. If you drop that content-type header on the response you should be

[jQuery] Re: jquery.form fails to handle JSON responses with iframe submit

2009-02-27 Thread Rick Faircloth
I don't know what the answer is, Wichert, but I'm *very* interested in finding out because I'm working on this very problem right now. From what I read yesterday, a file can't be uploaded via AJAX and an iFrame or some other solution has to be involved to make it work. So far, I haven't been

[jQuery] Re: jquery.form fails to handle JSON responses with iframe submit

2009-02-27 Thread Rick Faircloth
I spent all of yesterday trying to upload a file via AJAX only to read that it's not possible, without an iframe or something else involved. Where's the iFrame in Wichert's code? Wichert, is it specified in the action code? action=/cms/addImage? Or is $.ajaxSubmit able to handle files whereas

[jQuery] Re: Passing JSON objects to a Web Method

2009-02-27 Thread David Meiser
Mahesh, A few things, while I'm remembering: 1) Are you using .NET 3.5? The method I gave you will (probably) only work with 3.5, although it might work with 3.0. 2) Make sure you have the following before the class in your ASMX or ASPX file: [System.Web.Script.Services.ScriptService] (I

[jQuery] Re: FadeTo() On Table Row

2009-02-27 Thread Brian Schilt
Yeah, thats IE for ya. I've done something similar and I really haven't come across a better method of doing it then what you are currently doing. You can check out this past thread that is related...

[jQuery] click event and window.location problem in safari

2009-02-27 Thread introvert
Hello I have a simple jquery code that will put a link (on click event) on a division. The link is read from the anchor inside of the div: $(document).ready(function() { $(div.picture).click(function () { var url = $(this).find(a).attr('href'); window.location = url; });

[jQuery] Re: AJAX File Upload Options

2009-02-27 Thread eagleon
Does anyone have any experience using AJAX with FTP (not directly, but using server-side scripting?) On Feb 27, 8:03 am, Joseph Le Brech jlebr...@hotmail.com wrote: try and use ocupload that's worked a treat for me in the past. Date: Fri, 27 Feb 2009 04:09:48 -0800 Subject: [jQuery] Re:

[jQuery] Re: Exploding nested divs....

2009-02-27 Thread Stephan Veigl
You could try something similar to $(#outerdiv).children().hide(explode); by(e) Stephan 2009/2/27 webspee...@gmail.com webspee...@gmail.com: Using the explode animation, where the div explodes into X pieces. On Feb 17, 8:30 pm, Ricardo Tomasi ricardob...@gmail.com wrote: What do you mean

[jQuery] Re: easy way to include clueTip content in form

2009-02-27 Thread claus.k...@googlemail.com
On 27 Feb., 12:06, claus.k...@googlemail.com claus.k...@googlemail.com wrote: OK, it gets somewhat weird: if (original_elements[k].type == 'radio' || original_elements[k].type == 'checkbox') { original_elements[k].checked = copy_elements[k].checked; alert (state: +

[jQuery] Re: jQuery.each need extra check for object

2009-02-27 Thread Richard
I agree. We have some code that needs to perform functions if certain variables exist. I am writing code that is using .each to test for the existence of the variable (i.e. if the var is null or undefined don't run the code). On Feb 25, 9:26 pm, pbcomm pbc...@gmail.com wrote: I know the

[jQuery] jquery.media

2009-02-27 Thread James Tindall
Hi, If there's any kind of query string on the end of an flv file name the media plugin seems to refuse to overwrite the element with the embed code? Anyone know how to fix/work-round this?? cheers, James

[jQuery] Remove doenst work on dynamically created li

2009-02-27 Thread Dimby
Hi, I'm new, so to all of you HELLO Smile. Btw, im Dutch so maybe my English isnt that good. I love Jquery but i've got some starting problems. Live demo: http://pauldulong.nl/jquery/dgm.php# When I click on the X the tab disappears, perfect, as it should be. But when I create a new tab and

[jQuery] Beginner question: AJAX doesn't work

2009-02-27 Thread Mario
Hello everybody, I tried some jQuery AJAX tutorials and got started with jQuery. Moving further, I got stuck somewhere in my code and I don't know, why. What I wanna do is simple: give an email address to a php script and display the script's answer in my page without reloading. so this is what

[jQuery] Re: Passing array to $.ajax()

2009-02-27 Thread gaz
Have recently found a solution to this problem: $.post() accepts a JavaScript object for post data e.g. {name1 : value1, name2 : value2}, but you need to specify the same object property multiple times. Therefore you can create this property once, put an array into it and then push your values

[jQuery] Jquery.media fails with querystring

2009-02-27 Thread James Tindall
Hi, If there's any kind of query string on the end of an flv file name in the href of the element that is to be overwritten the media plugin fails to overwrite the element with the embed code? Anyone know how to fix/work-round this?? cheers, James

[jQuery] .live() handler svg elements

2009-02-27 Thread gav
Hi All. I am faced with the problem of tying the events mouseover to the SVG elements. If I connect an event using .bind() method and specify the class as a selector for element, something like: $(.someclass).bind (mouseover, function(e) {...}); - everything works fine, but only with the

[jQuery] Re: jCarousel: Show only one picture

2009-02-27 Thread brian
$('#foo').jcarousel({ scroll: 1, visible: 1 }) On Thu, Feb 26, 2009 at 8:56 PM, silfver dsilf...@gmail.com wrote: Hi! I'm trying to configure the jCarousel to show only one picture with the dimensions: 800x533 pixels. But when I change the CSS the navigation flips through 4 images every

[jQuery] Re: selectable + anchor not working

2009-02-27 Thread RotinPain
fine :) On 26 fév, 21:58, How wong...@gmail.com wrote: after so much trouble I  found out that jQuery 1.3 have propagation of events. thats the reason FF doesnt work. but Opera works differently On Feb 26, 12:47 pm, How wong...@gmail.com wrote: Hi I tried the code again and still

[jQuery] DSRTE or Alternative ?

2009-02-27 Thread Liam Byrne
Was looking for a good jQuery-powered WYSIWYG / Rich-Text Editor and any that I tried seemed to all have limitations or bugs, especially when dealing with bullet points. Then found DSRTE, which was GREAT. But having uploaded it to the target site, it turns out that it doesn't work

[jQuery] Re: JQuery problem trying to read XML from a site (xmlhttp)

2009-02-27 Thread deafGuru
Type 'cross domain XML with ajax' in the search field. You will find an excellent answer to common problem. Last night it was first time it worked magically. If you have own website, you just call proxy.php in which it calls another domain for XML document, receives and wraps it, and return it to

[jQuery] Re: jquery.form fails to handle JSON responses with iframe submit

2009-02-27 Thread Wichert Akkerman
Previously Rick Faircloth wrote: I spent all of yesterday trying to upload a file via AJAX only to read that it's not possible, without an iframe or something else involved. Where's the iFrame in Wichert's code? Wichert, is it specified in the action code? action=/cms/addImage? Or is

[jQuery] Re: jquery.form fails to handle JSON responses with iframe submit

2009-02-27 Thread Rick Faircloth
Thanks, Wichert. Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Wichert Akkerman Sent: Friday, February 27, 2009 11:32 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: jquery.form fails to handle JSON responses with

[jQuery] circular jcarousel help needed.

2009-02-27 Thread aRman
greetings, i can get a circular jcarousel work from within an array as per the example using itemVisibleInCallback: {onBeforeAnimation: mycarousel_itemVisibleInCallback}, itemVisibleOutCallback: {onAfterAnimation: mycarousel_itemVisibleOutCallback} i can load dynamic content from an xml file

[jQuery] Re: Multiple JSON objects - using results from one JSON object within a $.each() parse of another JSON object

2009-02-27 Thread tatlar
Thanks Stephan - I will take a look at your suggestion. Thanks for the heads up about the return statement - PHP function habits die hard On Feb 27, 12:38 am, Stephan Veigl stephan.ve...@gmail.com wrote: Hi, first of all, AJAX is _asynchronous_, do you have any mechanism that ensures

[jQuery] Re: Problem in selectors

2009-02-27 Thread RandyJohnson
Davide... Did you ever get a response. I am having a similar problem with 1.3.2 in that I have multiple area html statements and only one is being returned when I issue the following jquery statement: $('area').hover (popUpDisplay,popUpRemove)... Does anybody know what changed between 1.2.6

[jQuery] Re: Ajax capability question...

2009-02-27 Thread theinternot
Well, its written in Coldfusion using an ajax framwork called 'ajaxCFC' whic uses DWRUtils. The basic flow is: onClick event triggers ajax function call to a javascript function which then calls a Coldfusion component (sort of like an object) 'method' that does a CFHTTP (http get) request for

[jQuery] Re: JQuery problem trying to read XML from a site (xmlhttp)

2009-02-27 Thread KrushRadio - Doc
no, I have a yp server that is used by a bunch of radio stations (yp.krushradio.com) the website will be on either ww2.krushradio.com or www.krushradio.com... not sure yet. I see what you mean about cross domain scripting.. I totally forgot about that. I usually allow it in my IE

[jQuery] Re: alternate color row starting from a point

2009-02-27 Thread Magritte
Ok, it work, but I another trouble. the code now become: $('tr:not(.className):odd').css({'background':'red'}); because I would like to color row alternatively. The problem is that I would like that the alternativy start alway with red.(first 'tr' after every 'tr class=className//tr' red, then

[jQuery] Re: JQuery problem trying to read XML from a site (xmlhttp)

2009-02-27 Thread KrushRadio - Doc
I see what you mean... I've used something like that before, where i have one page do the httpreferr, and then i load that php page as xml... I think I built a couple RSS Feeds that way... Let me try that, thanks for the reminding. I got more stuff to work on now. Thanks ~Doc On Feb 27,

[jQuery] ajax() alternative to load() function?

2009-02-27 Thread Adam
Hi, Is there a way to use the ajax() function and insert html into the DOM similar to the load() function? I need to be able to catch errors and use a timeout, but replicate what load() does. Thanks.

[jQuery] Re: Multiple JSON objects - using results from one JSON object within a $.each() parse of another JSON object

2009-02-27 Thread tatlar
Huh. I am still getting zero values added to the myStations object. I think my syntax for adding to an object is wrong. Any suggestions anyone? On Feb 27, 8:43 am, tatlar robertlnew...@gmail.com wrote: Thanks Stephan - I will take a look at your suggestion. Thanks for the heads up about the

[jQuery] Using Google's Code Repo

2009-02-27 Thread Issac Kelly
I just started using google's code repo to call JQuery on my sites. It was recommended by a number of people, including John Resig (on TWiT); I'm having an issue though, and I'm wondering if it's just me. about one in a hundred times it just doesn't load at all; and on some configurations, it

[jQuery] Re: click event and window.location problem in safari

2009-02-27 Thread brian
I don't know what the problem is or how to fix it but I'm wondering why you need this onclick event at all. If you want the link to fill the entire div you might be able to just give the anchor display: block. On Fri, Feb 27, 2009 at 9:49 AM, introvert aljaz.faj...@gmail.com wrote: Hello I

[jQuery] Re: fastest way to move dom nodes?

2009-02-27 Thread Jack Killpatrick
Thanks. I ended up largely solving my problem via what turned out to be a related issue having to do with a selector I was using to get the node to append to (there were many new nodes created on the fly for appending into). I was using classes 3 deep for the selector and changed my code so

[jQuery] Re: Multiple JSON objects - using results from one JSON object within a $.each() parse of another JSON object

2009-02-27 Thread tatlar
I found this Async plugin that I think might do the trick: http://plugins.jquery.com/project/async On Feb 27, 9:18 am, tatlar robertlnew...@gmail.com wrote: Huh. I am still getting zero values added to the myStations object. I think my syntax for adding to an object is wrong. Any suggestions

[jQuery] function $.ajax return true/false ?

2009-02-27 Thread Gelegrodan
Hello I have the following code: function pnrexists(a){ $.ajax({ url: '/inc/chkusr.php?q=p', type: 'POST', dataType: 'html', data: {'pnr': a}, timeout: 2000, success: function(data) {

[jQuery] Re: DSRTE or Alternative ?

2009-02-27 Thread brian
It's a client-side application. The included PHP script is merely an example for image uploads. If you need to use this on a PHP4 site, you'll need to re-write the script or write your own. And you should really consider upgrading PHP, as support for 4.x has long been discontinued. On Fri, Feb

[jQuery] Re: :not selector

2009-02-27 Thread Mauricio (Maujor) Samy Silva
Hi Pedro, It is hard to figure out what you are trying to select without a look on the HTML markup. What does you mean with half of the elements i get with? It depends upon the markup! In nth-child(n) is n constant or inside a loop? How about a sample of your markup and information about

[jQuery] Re: Help me!: $(this) ???

2009-02-27 Thread Jsudesign
Thanks Ricardo, I got it to work :D Here's the final code. // JS /// $(document).ready(function(){ $(select).empty().append( new Option(0), new Option(1), new Option(2), new Option(3) ); $(:button).click(function(){

[jQuery] Re: Multiple JSON objects - using results from one JSON object within a $.each() parse of another JSON object

2009-02-27 Thread tatlar
Okay - I have figured it out. I needed to reformat the first JSON query into a $.ajax() query, and then ONLY call the second $.getJSON() query on an AJAX.success() method. Thanks for the pointers On Feb 27, 9:53 am, tatlar robertlnew...@gmail.com wrote: I found this Async plugin that I

[jQuery] My birthday gift to the jQuery Community

2009-02-27 Thread Sean O
It's been a while since I created anything publicly fun - kids have that effect on you :) So I figured I'd offer up my birthday gift to you: F3: Fast Flickr Findr http://www.sean-o.com/f3 Find Flickr photos fast. Built using jQuery, developed rapidly on Remy Sharp's JSBin. Enjoy. SEAN O

[jQuery] Re: Help me!: $(this) ???

2009-02-27 Thread Jsudesign
Works with out the select options as well. :) On Feb 27, 10:19 am, Jsudesign jus...@jsudesign.com wrote: Thanks Ricardo, I got it to work :D Here's the final code. // JS /// $(document).ready(function(){   $(select).empty().append(        new Option(0),

[jQuery] Newbie clueTip Plugin style removal

2009-02-27 Thread alanfluff
Hi cleverer people than me... Please can someone point me in the right direction to use this brilliant plugin but have it add no stlye so I can add style to an unstyled chunk of markup? I'm calling the plugin with $('.linkToFaq a').cluetip({splitTitle: '|', width: '100px', cluetipClass:

  1   2   >