Re: [jQuery] Using add/remove class vs. show hide for a swap out section?

2009-11-25 Thread Michael Geary
It would really help if you could post a link to a test page instead of posting code excerpts. For example, I don't see any HTML code that has id=link-about and your other links. Is that missing from your page, or did you just omit it in the code you posted? Are the LI elements supposed to be

[jQuery] accDND: The Keyboard and Screen Reader Accessible Drag and Drop Plugin

2009-11-25 Thread Bryan Garaventa
http://plugins.jquery.com/project/accDND About accDND is a keyboard and screen reader accessible drag and drop functionality plugin for jQuery. Features include: a.. Dragging selected options between unlimited Select fields by pressing the drag key (`), or cancel (Escape) to stop

[jQuery] Re: (this[0].ownerDocument || this[0]).createDocumentFragment is not a function

2009-11-25 Thread coffeecup
thanks, i registered a $.temp var outside of my get function and now it works! $.temp = {}; $(this).bind(click, function(e){ $.temp = $(this); $.get(main.php?action=getEventDetails,},function(data){ $.temp.html(data); }); });

Re: [jQuery] Hi

2009-11-25 Thread sanjib dhar
in rails there are somany plugins On Wed, Nov 25, 2009 at 1:25 PM, Raju raju3...@gmail.com wrote: Hi All, I need a chat script to embed into my website, can anyone help me to find the script, Warm Regards, Mari Raj K,

Re: [jQuery] Re: (this[0].ownerDocument || this[0]).createDocumentFragment is not a function

2009-11-25 Thread Michel Belleville
I'd like to point out here that you don't really need to place this variable inside the jQuery namespace, you don't even need to enable it to get out of its scope by making it global, so you may do something like that : $(this).bind(click, function(e) { var temp = $(this); // this is a local

Re: [jQuery] accDND: The Keyboard and Screen Reader Accessible Drag and Drop Plugin

2009-11-25 Thread Andre Polykanine
Hello Bryan and all, Thanks for that info! You're screenreader-aware... and it's great! -- With best regards from Ukraine, Andre Skype: Francophile; WlmMSN: arthaelon @ yandex.ru; Jabber: arthaelon @ jabber.org Yahoo! messenger: andre.polykanine; ICQ: 191749952 Twitter: m_elensule -

[jQuery] Please help to check the form...

2009-11-25 Thread Andre Polykanine
Hello everyone, Sorry, not sure if the message passed through the first time, so repeating it. I'm new to JQuery, so please don't be too strict). I'm checking user input in the form. The form is usual but there's rather many check-outs. I preferred to display them Div's if the fields are not

Re: [jQuery] jquery toggle Ie7 problem

2009-11-25 Thread Gkrusemann
someone? -- View this message in context: http://old.nabble.com/jquery-toggle-Ie7-problem-tp26481964s27240p26511680.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Extract tag element and closing tag

2009-11-25 Thread coldwired
Hi, I've got the following piece of code that extracts the html code contained within a clicked element: $(p,h1,h2,h3,span,li, dd, dt,b,em,strong).click(function() { alert($(this).html()); }); I want to get the containing element from this too, it's open and close tag. For example: div

[jQuery] Introduction to jQuery

2009-11-25 Thread winster
hi all, i have a ppt powerpoint presentation on jQuery http://docs.google.com/present/edit?id=0AW_4ZSAG69j6ZGdwOWNyY2dfOTFkZnNycmZkeghl=en have a look and give comments!

Re: [jQuery] Extract tag element and closing tag

2009-11-25 Thread Richard D. Worth
See http://github.com/brandonaaron/jquery-outerhtml Here's the spoiler: alert( $('div/div').append( $(this).clone() ).html() ); - Richard On Wed, Nov 25, 2009 at 8:14 AM, coldwired co...@coolwired.net wrote: Hi, I've got the following piece of code that extracts the html code contained

Re: [jQuery] Introduction to jQuery

2009-11-25 Thread Alexandru Adrian Dinulescu
Hmm is it just me or some text is over another parts of text? Other than that, well I was hoping for some text-wall rather than images, most images do not even have a title, so in some images i really dont know whats shown. With a lot of refinement, this could considered to be distributed, but as

Re: [jQuery] Extract tag element and closing tag

2009-11-25 Thread coldwired
Magic, that's exactly what I needed. Cheers! Colin. coldwired wrote: Hi, I've got the following piece of code that extracts the html code contained within a clicked element: $(p,h1,h2,h3,span,li, dd, dt,b,em,strong).click(function() { alert($(this).html()); }); I want to get

[jQuery] Problem with slider if else. Please help.

2009-11-25 Thread Morgan
Hi, I'm a jquery novice and am trying to get a simple cost slider to work the way I want with no luck. I've used this as my foundation and modified it so that the cost is set behind the scenes and not entered by the user - http://design-notes.info/demo/cost/costestimator.html . How I would like

[jQuery] [validate] Issues validating two different forms on same page using validation plugin

2009-11-25 Thread MarkW
Hi. Would have posted this on the actual plugin page but comments are closed I was sent here instead. Here's the plugin page: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ I have two different forms on the same page with different id attributes. Both have separate validate

[jQuery] animated gif freezes in IE8 when applying a jQuery animation on it

2009-11-25 Thread goo...@karnbrock.biz
Hi, here's an example page: http://debug.locport.de/jqueryproblem/ The bird is an animated gif - the wings should be flapping all the time. I'm using jQuery to move the container of this animated gif across the page and back. The problem only exists in IE8: The animated gif freezes while jQuery

Re: [jQuery] Hi

2009-11-25 Thread Fredric Fredricson
Raju wrote: Hi All, I need a chat script to embed into my website, can anyone help me to find the script, Google is always a good start: http://www.google.se/#q=jquery+chat+scripts Regards, Fredric Warm Regards, Mari Raj K, attachment: Fredric.Fredricson.vcf

Re: [jQuery] Problem with slider if else. Please help.

2009-11-25 Thread Richard D. Worth
On Wed, Nov 25, 2009 at 1:18 AM, Morgan morganma...@gmail.com wrote: Hi, I'm a jquery novice and am trying to get a simple cost slider to work the way I want with no luck. I've used this as my foundation and modified it so that the cost is set behind the scenes and not entered by the user

Re: [jQuery] two level tabs

2009-11-25 Thread waseem sabjee
are you talking about their horizontal nav ? that would be known as a super dropline menu you can see the demo here : http://www.cranshawmiddleton.co.uk/waxworks/index_ie6.html#nogo http://www.cranshawmiddleton.co.uk/waxworks/index_ie6.html#nogoand the code here :

[jQuery] Validate: more info on options

2009-11-25 Thread Andre Polykanine
Hello everyone, I decided to use the Validate plugin as suggested by many of you here. But either I can't read, or I can't search, but I didn't manage to find a description or a user guide for the options used by Rules() method, for example. I have seen required, email, equalTo, and minlength.

[jQuery] Animated gif freezes in IE8 when applying a jQuery animation on it

2009-11-25 Thread TruckTurner
Hi, please look at the example page: http://debug.locport.de/jqueryproblem/ http://debug.locport.de/jqueryproblem/ The bird is an animated gif - the wings should be flapping all the time. I'm using jQuery to move the container of this animated gif across the page and back. The problem only

[jQuery] Address plug-in issues

2009-11-25 Thread zendog74
I am using the jQuery Address plug-in (http://www.asual.com/jquery/ address/) to enable bookmarking and back and forward buttons in a document search portlet. I have things working well when there is only one search portlet on the page. However, when I put two search portlets on the page, events

Re: [jQuery] Validate: more info on options

2009-11-25 Thread Jörn Zaefferer
The documentation for the plugin is here: http://docs.jquery.com/Plugins/Validation That includes documentation for the rules() method as well as descriptions for all built-in validation methods ( http://docs.jquery.com/Plugins/Validation#List_of_built-in_Validation_methods ). Jörn On Wed, Nov

Re[2]: [jQuery] Validate: more info on options

2009-11-25 Thread Andre Polykanine
Hello Jörn and all, Sorry, but I still can't find the table of options accepted by the Rules() method. In the Rules() sections it says that they are the same as in Rules parameter of Validate() method, and in Validate() topic it says See Rules() for detailed description :-). -- With best regards

[jQuery] Using multiple instances of datepicker generated via append()

2009-11-25 Thread gavk
Hi guys, I have managed to get multiple instances of a jQuery datepicker working using a technique found here http://tinyurl.com/d82fem http://tinyurl.com/d82fem The uploaded image probably explains better what I am trying to achieve, using the 'append' function i'd like to duplicate a row

[jQuery] Re: $.getScript results in two requests!

2009-11-25 Thread KeeganWatkins
just out of curiosity, have you checked to make sure you aren't using the $.ajax() method (or one of its convenience methods) elsewhere? i see in the first set of headers that the X-Requested-With header is present, which is generally added by jQuery (and most other libs) when a request is

[jQuery] Weird hight issue with show/hide div

2009-11-25 Thread youradds
Hi, Got a bit of a weird one here, and not sure how to fix it :/ Basically - I'm using this code: table width=100%

[jQuery] Re: Weird hight issue with show/hide div

2009-11-25 Thread youradds
BTW, you will have to load at least 2 of the tabs to see what I mean (the content doesn't go down that far, so needs at least 2 tabs to be selected before it will show the issue I'm having) TIA Andy On Nov 25, 3:30 pm, youradds andy.ne...@gmail.com wrote: Hi, Got a bit of a weird one here,

[jQuery] Re: Weird hight issue with show/hide div

2009-11-25 Thread youradds
Ok, all sorted... it was new ElementMaxHeight(); which was causing the mess up. I added that into the onclick= bit, and works perfectly now :) Cheers Andy On Nov 25, 3:36 pm, youradds andy.ne...@gmail.com wrote: BTW, you will have to load at least 2 of the tabs to see what I mean (the

[jQuery] Re: $.getScript results in two requests!

2009-11-25 Thread donb
Be very certain you don't accidentally bind a click function twice somehow. Assuming, that is, a click initiates the action. Setting a Firebug breakpoint on entry to the repeated code, then inspecting the Stack panel to see how you got there each time, will probably reveal how this occurs. On

[jQuery] value visible in ajax response, but not used in output

2009-11-25 Thread dcrunche
hi, I am rather new to jquery ajax but I managed to get some simple stuff done. Now I am working on a wizard form that uses select items (with the options pulled from a database). This works nice. Now I want to take it a step further: I want the selection of the second selector be based on the

[jQuery] Re: Using multiple instances of datepicker generated via append()

2009-11-25 Thread MorningZ
Quick example: http://jsbin.com/efuqa3/edit

[jQuery] Re: value visible in ajax response, but not used in output

2009-11-25 Thread Scott Sauyet
On Nov 25, 11:12 am, dcrunche henjohoek...@gmail.com wrote: When I check the response given in the console I see the output I want, but that is not showing on the page. Here's the JS I use:http://pastie.org/714683 I don't think you are actually using the resulting data anywhere in that code,

[jQuery] Cycle and Transition Effects with Each Slides

2009-11-25 Thread vincent woo
Hi, I am creating a carousel using Cycle with the following effects: 1. Each slide fades/slides in when user clicks the previous or next button 2. When the slide finishes loading, I want to animate the text and images in each slide with a slide-in effect. Questions: 1. How could one do it so

RE: [jQuery] Weird hight issue with show/hide div

2009-11-25 Thread Rick Faircloth
I'm not noticing any problem with the sliding/hiding div's id IE 8. All content seems to be showing, down to and including the Next button in each section... -Original Message- From: youradds [mailto:andy.ne...@gmail.com] Sent: Wednesday, November 25, 2009 10:31 AM To: jQuery (English)

Re: [jQuery] Please help to check the form...

2009-11-25 Thread brian
What is the problem you are trying to solve? What behaviour are you seeing to suggest it is wrong? On Wed, Nov 25, 2009 at 6:55 AM, Andre Polykanine andre.polykan...@gmail.com wrote: Hello everyone, Sorry, not sure if the message passed through the first time, so repeating it. I'm new to

[jQuery] Re: Cluetip - Sticky pulling inline content

2009-11-25 Thread christopherious
That did the trick. Thank you very much, Karl! -c On Nov 24, 10:42 pm, Karl Swedberg k...@englishrules.com wrote: You can probably fix it by adding this to your CSS: #cluetip #hidden {   display:block; } --Karl Karl Swedbergwww.englishrules.comwww.learningjquery.com On

Re[2]: [jQuery] Please help to check the form...

2009-11-25 Thread Andre Polykanine
Hello brian and all, I was attempting to validate the form manually and had deep problems with it. Now I'm using jQuery.validate plugin and almost everything goes OK, but I still have a couple of missunderstandings: 1. How can I tell the plugin that a valid login (#ulogin) is a login that fits to

Re: Re[2]: [jQuery] Please help to check the form...

2009-11-25 Thread brian
On Wed, Nov 25, 2009 at 1:03 PM, Andre Polykanine an...@arthaelon.net wrote: Hello brian and all, I was attempting to validate the form manually and had deep problems with it. Now I'm using jQuery.validate plugin and almost everything goes OK, but I still have a couple of missunderstandings:

[jQuery] NEW! jQuery CKEditor Plugin v0.10

2009-11-25 Thread Diego A.
NEW! jQuery CKEditor Plugin v0.10 http://www.fyneworks.com/jquery/CKEditor/ It's been a while but hey, I've finally done it. I've just released the very first version of my new CKEditor plugin for jQuery. I only started working on it today, but soon enough I hope to turn it into a complete

[jQuery] unknown pseudo-class or pseudo-element

2009-11-25 Thread Miloš Rašić
Is there a solution to the unknown pseudo-class or pseudo-element error when using : selectors (like :visible, :first, :animated, :odd, etc) in 1.3.2 yet? It generates only a warning in FF3.5 but it seems to generate an error in IE8.

[jQuery] [validate] Specifying custom highlight/unhighlight methods problem

2009-11-25 Thread Imre Farkas
I'm trying to specify a couple of custom methods for highlighting/ unhighlighting valid/invalid fields on my form, but I'm getting some strange behaviour, which I'm not sure is due to me misunderstanding how these methods are supposed to be implemented, or if it's just buggy. $().ready(function()

Re: [jQuery] Using multiple instances of datepicker generated via append()

2009-11-25 Thread gavk
Dude thats awesome!!! Thanks for the help it is very much appreciated! :clap: MorningZ wrote: Quick example: http://jsbin.com/efuqa3/edit -- View this message in context:

[jQuery] Close Button using prettyPhoto w/ JQuery

2009-11-25 Thread jonnyvegasss
Hello, 1st I am using prettyPhoto, prettyPhoto is a jQuery based lightbox clone. Not only does it support images, it also add support for videos, flash, YouTube, iFrames. ... www.no-margin-for-errors.com/ What I am using it for is to open an iframe to pull in another html page. Here is my page

[jQuery] Superfish Animation Issue

2009-11-25 Thread bfopma
Hi, I am experiencing the following problem with the Superfish plugin. I have a series of drop down menus that slide down upon hovering over their parent. However, I have noticed the following issue with menu items not displaying. I can reproduce the problem as follows: 1) Hover over a parent

[jQuery] Jquery form plugin and accessing formData

2009-11-25 Thread Mark J
I am using the excellent jquery form plugin to obtain form data, do some pre-submission processing, and pass the altered form on to a django view via ajax for some additional processing. I have a jQuery form plugin beforeSubmit function to basically divide a form field by 12 if another

[jQuery] Change images dinamically with jquery

2009-11-25 Thread gioscarab
Hi guys! I come write from Italy, I am a jquery noob and I am working on it to improve my skills. This instrument is fantastic for noobs!! Here it is my website (do you like my shots??). I am triyng to change horizontal image bar with new images when I click on left sections. How can I do it? Can

[jQuery] Re: Close Button using prettyPhoto w/ JQuery

2009-11-25 Thread Scott Sauyet
On Nov 25, 12:27 pm, jonnyvegasss jonnyvega...@yahoo.com wrote: When the Listener clicks the CLOSE button on the modal window, I would like it to be able to a. close the modal window and or refresh the parent window. I am not a Java programmer, but am learning things as I go. We're all

[jQuery] Re: Close Button using prettyPhoto w/ JQuery

2009-11-25 Thread jonnyvegasss
Thanks Scott, That seems to be exactly what I need. I'm just not sure how, where to add something like that. I apologize for my ignorance, but as I said I'm learning LOL! Also, I looked at the links you posted, and I don't see the parent window refreshing after the child window is closed. Thank

[jQuery] Re: Debuging AJAX

2009-11-25 Thread Rockinelle
Any new eyes out there? Not sure why this got changed to accessibility discussion. On Nov 24, 4:46 pm, Rockinelle ericbles...@gmail.com wrote: Hey everyone, I've been trying to make a .post work for me and I'm using firebug to attempt to debug my problems. I am trying to use ajax to process a

[jQuery] Re: superfish navbar issue in Afterburner or JA-Purity Templates

2009-11-25 Thread xantof
This is a progress report on finding a solution : If all CSS pertaining to the NAV position in the Template's style sheet are commented out, then it works. This is a dirty solution and I would like to find the root of the problem. I think it has to do, at least in part with the WIDTH parameter.

Re: [jQuery] Re: Debuging AJAX

2009-11-25 Thread Peter Edwards
Hey, don't use document.write() or alert() to debug - either use console.log() or have a div in the document which can display debugging information and append any data to it. $('#testform').live('submit',function(){ var formData = $(this).serialize(); console.log(formData);

[jQuery] Validate: Display errors after Ajax form submit

2009-11-25 Thread Ted
I have the validator setup nicely with client side rules and some remote validations. That part is working well. When the form is submitted (via ajax) there may be some more complicated server side validations that generate errors. (Such as checking a credit card with the cc service, db

[jQuery] toggle anonymous function doesn't like object value in .css()

2009-11-25 Thread Magnificent
Hello all, I'm running into a problem where it looks like the toggle() method's anonymous functions don't like object values in the css() method. I'm not having any problems without this outside my toggle(), I'm doing stuff like: zip.css({ 'border': + zip_data.no_error.border,

[jQuery] Problems injecting text into div classes

2009-11-25 Thread shaf
Hi Guys I have several div classes and I am trying to insert some html into one of them but firebug keeps telling me its not a function. Code below: div class=direction/div div class=direction/div div class=direction/div div class=direction/div $(.direction)[1].html(div class=\direction_err\The

[jQuery] Re: Problems injecting text into div classes

2009-11-25 Thread seasoup
$('.direction') returns a jQuery object that is similar to an array of nodes. $('.direction')[0] returns the first node in the jQuery object, without any jQuery features... just the basic DOM node. $ ('.direction').eq(0).html or $('.direction:eq(0)').html are what you are looking for. They

[jQuery] Re: Problems injecting text into div classes

2009-11-25 Thread shaf
Thanks seasoup. That prevents the error from popping up but no html is injected into the DIV. Why do you think this is ? On Nov 25, 11:49 pm, seasoup seas...@gmail.com wrote: $('.direction') returns a jQuery object that is similar to an array of nodes.  $('.direction')[0] returns the first node

[jQuery] Re: toggle anonymous function doesn't like object value in .css()

2009-11-25 Thread Magnificent
So it looks like it's not liking '1px solid' in my data object value. If I change things to: var zip_data = { no_error: { border:'#e1e1e1', background:'#f2f3f2' } } zip.css({ 'border': '1px solid ' + zip_data.no_error.border, 'background':

[jQuery] AUTO: Michael Lawson is out of the office (returning 11/30/2009)

2009-11-25 Thread Michael Lawson
I am out of the office until 11/30/2009. Due to severe triptophan intake, I will be unable to check my email, nor will I be in the office. (it's Thanksgiving) Note: This is an automated response to your message [jQuery] Re: Close Button using prettyPhoto w/ JQuery sent on 11/25/09

Re[4]: [jQuery] Please help to check the form...

2009-11-25 Thread Andre Polykanine
Hello brian and all, Thanks for your time! Now I've added the following method: $.validator.addMethod( regexp,function (value, element, regexp) { var check=false; var re=new RegExp (regexp); return this.optional(element) || re.test (value); }, Please check your input.); It works well here but it

Re[5]: [jQuery] Please help to check the form...

2009-11-25 Thread Andre Polykanine
Hello all, Oh sorry, it's my screenreader fault: for some reason it doesn't hide and show the message properly. -- With best regards from Ukraine, Andre Skype: Francophile; WlmMSN: arthaelon @ yandex.ru; Jabber: arthaelon @ jabber.org Yahoo! messenger: andre.polykanine; ICQ:

[jQuery] add element after page has loaded

2009-11-25 Thread edencane
Hi. I have the following document.ready: $(document).ready(function(){ $('#formGen1').load('formGen1.jsp'); if(${membership eq 'propertyContractor'}) { $('#formGen2').load('formGen2.jsp'); $('#formGen3a').load('formGen3a.jsp'); } else if

[jQuery] simple jquery form plugin question

2009-11-25 Thread David
Hi, Just started using jquery and it looks really good! I have question regarding the jQuery form plugin. I tried to get the simplest example I could up and running but I ran into a wall. In the example when I press submit, I expect an alert box to appear but I only get directed to the url that

[jQuery] How would I implement this?

2009-11-25 Thread Damien
A component of my website needs a table that holds a lot of information. On most screens there will be too many columns to fit across the width of the site. I would like the user to be able to scroll through these columns (probably through use of buttons). Would it be possible to use jQuery to

[jQuery] Autocomplete IE scrollbar not appearing

2009-11-25 Thread zLan
Hey, I implemented the jQuery Autocomplete plugin and when I do a search that returns a lot of items I want a vertical scrollbar. I added the scroll: true, and scrollHeight but the scroll bar doesn't want to work in IE (works in FF and Chrome perfectly). This is the jQuery I have for the plugin:

Re: [jQuery] How would I implement this?

2009-11-25 Thread brian
Have you tried setting a max width and using the CSS overflow rule? On Wed, Nov 25, 2009 at 4:04 PM, Damien redjel...@gmail.com wrote: A component of my website needs a table that holds a lot of information. On most screens there will be too many columns to fit across the width of the site. I

Re: [jQuery] simple jquery form plugin question

2009-11-25 Thread brian
Are you sure that your javascript is being loaded properly? You can check that easily with Firebug or the FF WebDeveloper extension. On Wed, Nov 25, 2009 at 7:07 PM, David phon...@gmail.com wrote: Hi, Just started using jquery and it looks really good! I have question regarding the jQuery

Re: [jQuery] Using add/remove class vs. show hide for a swap out section?

2009-11-25 Thread rorourke
Thanks for the help. I think we are getting somewhere. Here is where the page is being developed: http://banderdash.net/design/ The JavaScript you suggested is in the 'slide.js' file. Found here: http://banderdash.net/design/js/slide.js The problem I am running into now is that it appears the

[jQuery] Re: Cancel Selected An Item of Selectable

2009-11-25 Thread He Jun-Jie
Thank you for replying my question. My situation is very easy I just want to ask whether the jQuery ui selectable provides a way to unselected one item by doing ctrl+click. Here is the sample: http://jsbin.com/ujile On 11月25日, 上午11时59分, Richard D. Worth rdwo...@gmail.com wrote: We'd be happy to

[jQuery] probelm with cluetip and radio button lists

2009-11-25 Thread couch
I'm trying to create a radio button list programatically from a database, and have cluetip messages on the labels. I first created the databound radio button list in .NET and applied the code: $(document).ready(function(){ $('span.tips').cluetip({ splitTitle: '|',

[jQuery] Re: JQuery value set delay

2009-11-25 Thread Adods
i've tried that one too, and get the same result. but now i already get the solution by using old way: document.pm_form.act.value = 'value'; btw, thanks for the help :) On Nov 24, 9:32 pm, Michel Belleville michel.bellevi...@gmail.com wrote: I think I've had something similar once, I'm not

[jQuery] custom event firing

2009-11-25 Thread Allen123
Hi all, I am learning how to author jquery plug in and trying to fire a custom event using trigger and bind. However, for some reason, when I click the button first time, the custom event is not called. If I click again, the event will execute once. If I click the third time, the event will

Re: [jQuery] custom event firing

2009-11-25 Thread waseem sabjee
i usually use something like this when coding a jQuery plugin. (function() { var newMethods = { // function start AddTo : function(options) { var defaults = { // set default option values here }; var options = $.extend(defaults, options); // access any options

Re: [jQuery] Re: JQuery value set delay

2009-11-25 Thread Michel Belleville
Let me check a little point though, did you set the *id* of your input to act or was act just the *name* ? Because this selector : $('#act') selects an element that has the *id* act, whereas in vanilla DOM document.your_form.act points to the element that has the *name* act. If so, no wonder your

[jQuery] Re: probelm with cluetip and radio button lists

2009-11-25 Thread couch
OK - I found my newby mistake. The cluetip function should be inside the getJSON function...

[jQuery] Re: value visible in ajax response, but not used in output

2009-11-25 Thread dcrunche
Hi Scott, thanks, that was what did the trick. I didn't need this without using the actual vars - then it worked well. But it makes sense I need to actually return the new result. D. On Nov 25, 5:57 pm, Scott Sauyet scott.sau...@gmail.com wrote: On Nov 25, 11:12 am, dcrunche