[jQuery] Re: tooltips not working on content loaded via ajax

2009-09-10 Thread Canadaka
thanks for the response, I'm not sure how I can use live() Here is a snippit of the javascript in question. test http://ajax.googleapis.com/ajax/ libs/jquery/1.3.2/jquery.min.js">

[jQuery] Re: triggering handlers for native events

2009-09-10 Thread Jules
You are right, when click() event is triggered, the check box/radio button value is the original value. Use change(fn) to detect the after click() value. On Sep 11, 10:40 am, Mike McNally wrote: > Am I the only person who finds wildly wrong the jQuery behavior of > handler invocation for native

[jQuery] Re: JQuery Autocomplete Values/Presetting

2009-09-10 Thread alexbodn . groups
preset "Two" as value for autocomplete field, and the 2 for the code field. then add a results trigger to set the value param received to the code field. On Thu, Sep 10, 2009 at 19:42, Erick wrote: I'm using the JQuery Autocomplete plug-in and having a great deal of difficulty setting the val

[jQuery] Re: autocomplete.js plugin

2009-09-10 Thread alexbodn . groups
well, it returned a list. multiple is for editing a list of autocomplete values, separated by ',' by default. i think you don't need multiple. but since the list is separated by '|', you need to supply a custom parse function. the default separates values by new lines, while '|' separes between

[jQuery] Re: data is null,while i need ""-------BTW

2009-09-10 Thread Junhua Gao
Because there are lots of place to revise and jquery1.2.1 has no such problem, which part in jquery should be revised?Thanks. On Fri, Sep 11, 2009 at 12:32 AM, MorningZ wrote: > > Easy fix > > $('#verMailDate').attr("value",data.verMailDate); > > to > > $('#verMailDate').attr("value","" + dat

[jQuery] jQuery DropDown Menu Like Office 2007?

2009-09-10 Thread Reynier Pérez Mira
Hi every: I'm using Superfish menu in one application but I want to know if exists any plugin for dropdown menus with styles like Office? Cheers -- Ing. Reynier Pérez Mira

[jQuery] triggering handlers for native events

2009-09-10 Thread Mike McNally
Am I the only person who finds wildly wrong the jQuery behavior of handler invocation for native events on state-changing elements like check boxes and radio boxes? Specifically, when the user clicks a check box or a radio box, the state of the element is changed and then the handler is invoked.

[jQuery] Validate plugin, weird issues after remote validation implementation

2009-09-10 Thread Jean-Michel
Hi, I got a form with a few fields. 2 of them are using remote validation. So it's basically checking if username and email are already in database. The problem is those field seems to validate as soon has i click into another field causing the error message to show up no mather if I did put som

[jQuery] Re: is there an opposite of 'closet' selector

2009-09-10 Thread MorningZ
"get the prev to " that's all i need... but the ".prev()" selector only seems to go "up" the DOM, it won't go back into the table row that the two tables share On Sep 10, 5:29 pm, "ryan.j" wrote: > not sure if there is a neat way of doing it, but providing the nested > tables aren't too busy w

[jQuery] Re: Can't get attributes from ajax response...

2009-09-10 Thread Cesar Sanz
Use .live instead of .click - Original Message - From: "James" To: "jQuery (English)" Sent: Tuesday, September 08, 2009 4:07 PM Subject: [jQuery] Re: Can't get attributes from ajax response... When and where are you appending the click() code? If you're doing it before the AJAX c

[jQuery] Re: is there an opposite of 'closet' selector

2009-09-10 Thread ryan.j
not sure if there is a neat way of doing it, but providing the nested tables aren't too busy would it be horribly inefficient to do something like this? get the prev to , check if is closest to , if false get the prev to the current and test again, if true you have your element.

[jQuery] Re: Clone value of input box by the ID

2009-09-10 Thread Sacud
Ok., i have answer, below code if someone need: http://code.jquery.com/jquery-latest.js";> $(document).ready(function(){ $("#pole_a").change(function () { var text = $(this).val(); $("#pole_b").val(text); }); }); On 10 Wrz, 20:16, PIT_777 wrote: > Hi, > i

[jQuery] chaining animations and pausing for each step

2009-09-10 Thread D A
In pseudo code, here's what I'm trying to do with some text: shrinkText.changeText.EnlargeText. The jQuery I'm using for this: $('span#calendarNumber').animate({ color: '#999', fontSize: '12px' }, 500 ).html($('#calculatorSampleInPopup1').val()).a

[jQuery] .find() not working on node in XML document

2009-09-10 Thread Jeff
I've got a semantic XML document, for which I'm using $.get successfully to extract and nodes. The node does not work, however. It returns blank. Strange, since I can see in Firebug that $(this) has 4 children, and link is in there. Here's the code: $(data).find('item').each(function() {

[jQuery] Re: Superfish

2009-09-10 Thread TheoSoft
modify the .sf-menu styles from the superfish.css file On Sep 10, 1:59 pm, Matt wrote: > How do I go about changing the subnavigation background/position? I > would like to add a vertical gradient to the subnavigation and am > having a hard time. > > Any help would be appreciated. > > www.restor

[jQuery] Superfish

2009-09-10 Thread Matt
How do I go about changing the subnavigation background/position? I would like to add a vertical gradient to the subnavigation and am having a hard time. Any help would be appreciated. www.restorefoundation.schematixdesign.com

[jQuery] Re: is there an opposite of 'closet' selector

2009-09-10 Thread MorningZ
btw, the HTML would be something like Update

[jQuery] Re: Plugin Jquery + PHP ????

2009-09-10 Thread waseem sabjee
Are you injecting any html into your page AFTER the DOM has fully loaded at any time ? On Thu, Sep 10, 2009 at 8:27 PM, jfcdeutsch wrote: > > > Good morning everyone. > > I made a page with PHP, the problem is that I want to integrate a > Jquery plugin called QTIP and does not execute any comman

[jQuery] autocomplete.js plugin

2009-09-10 Thread DTaylor
I've got an autocomplete back end that returns multiple results, separated by pipes: http://38.119.36.106/jquery/headerSearch.aspx?q=queens Then on the top of this page I have a search field that uses the autocomplete plugin. http://38.119.36.106/ Try typing in "queens" into the box. It only

[jQuery] is there an opposite of 'closet' selector

2009-09-10 Thread MorningZ
This selector is almost what i need http://docs.jquery.com/Traversing/closest except i need it to go backwards... so i have an item selected, i need to find the closet tag before it (which is nested deep in a table layout, yuck), and the table HTML varies on different templates I thought .pre

[jQuery] pligin Qtip Jquery + PHP? Help

2009-09-10 Thread jfcdeutsch
Good morning everyone. I made a page with PHP, the problem is that I want to integrate a Jquery plugin called QTIP and does not execute any command QTIP. If I remove the PHP code runs the page great, but when integro the QTIP not run anything. my page this saved with PHP, I leave the code here.

[jQuery] Clone value of input box by the ID

2009-09-10 Thread PIT_777
Hi, i want to get value from pole_a, and next set this to pole_b when i see that value of pole_a was change. i know how to do it in clean JS, but i want to do it in jquery. Does anywane know how to do it? //

[jQuery] Re: saving values from a multi select list.

2009-09-10 Thread shaded
Thanks for the reply. I'm not really too concerned about html and how its displayed right now. I'm just concerned that its not passing the right data to the ajax call. It's also part of a much larger mvc type program so its hard to show html. this is what the html for the drop down list looks lik

[jQuery] Re: IDE supporting jQuery

2009-09-10 Thread MorningZ
Are you looking for something where Intellisense would work for jQuery? Something else?Open source so it's free or some other reason? A lot will depend on what you use for server side code so you don't have two IDE's to mess with On Sep 10, 11:41 am, Saga wrote: > is there any IDE supp

[jQuery] Re: Tabs - Fade and Rotate

2009-09-10 Thread -e-train
that worked great. thanks so much. is there somewhere int he documentation that explains this? i looked up fade and it just talk about using slow, medium, fast, etc in the write up, but it doesn't show how to daisy chain the parameters... On Sep 9, 4:08 pm, Mr Speaker wrote: > Any extra optio

[jQuery] Jquery T-Shirts

2009-09-10 Thread Donald J. Organ IV
Is there an official place to get JQuery T-Shirts / Mugs? I see alot of individuals that have created one off stores, but I would like to buy from an official source if one exists.

[jQuery] Re: IDE supporting jQuery

2009-09-10 Thread Cesar Sanz
Aptana Studio - Original Message - From: "Saga" To: "jQuery (English)" Sent: Thursday, September 10, 2009 9:41 AM Subject: [jQuery] IDE supporting jQuery is there any IDE supporting jQuery..i prefer some open source IDE...pls suggest me on

[jQuery] Ajax post request times out on Safari

2009-09-10 Thread kedarme
Hi We are making an ajax request to post some data to the server. As we do not want any response from the server we have a small timeout for these requests function ajaxFunc(ajaxURL, dataString, isPost, dataTypeVal) { try { $.ajax({ async: true,

[jQuery] Jquery Modal Dialog

2009-09-10 Thread NM
Hi, I used the jquery modal dialog from the jqueryui.com, that is currently draggable from the title only. is there any way i can make that draggable by inserting a div at the footer of the dialog or make it draggable from everywhere in the dialog.

[jQuery] problem in safazri with javascript tabs

2009-09-10 Thread utahgolfer
OK i am hoping someone can help me with this problem. I have a web app that i am developing. I chose to use JQtouch to assist me in this. For the most part it works great. Navigation is slick and i can even load static pages. The problem is this, when the static page first loads the js tabs

[jQuery] IDE supporting jQuery

2009-09-10 Thread Saga
is there any IDE supporting jQuery..i prefer some open source IDE...pls suggest me on

[jQuery] JQuery Autocomplete Values/Presetting

2009-09-10 Thread Erick
I'm using the JQuery Autocomplete plug-in and having a great deal of difficulty setting the value of the field either in advance (before making it an autocomplete) or after page load. To start, I have a standard text box and was just echoing a value from php into the value="" param. Then, on pag

[jQuery] Re: data is null,while i need ""------BTW

2009-09-10 Thread Junhua Gao
I have lots of places to revise and jquery1.2.1 has no such problem,so i want to revise jquery1.3.2, which part should i revise? thanks. On 9/11/09, Junhua Gao wrote: > Thanks!! > > On Fri, Sep 11, 2009 at 12:32 AM, MorningZ wrote: > >> >> Easy fix >> >> $('#verMailDate').attr("value",data.

[jQuery] Re: data is null,while i need ""

2009-09-10 Thread Junhua Gao
Thanks!! On Fri, Sep 11, 2009 at 12:32 AM, MorningZ wrote: > > Easy fix > > $('#verMailDate').attr("value",data.verMailDate); > > to > > $('#verMailDate').attr("value","" + data.verMailDate); > > > > On Sep 10, 12:17 pm, Junhua Gao wrote: > > $.getJSON('/VersionQueryJsonAction',{verID:verid},f

[jQuery] Re: saving values from a multi select list.

2009-09-10 Thread MorningZ
Have some HTML to show with that? there is no reason why ".val()" would not bring back what it is supposed to: an array of values from selected unless you were using it wrong, your selectors are wrong, or your HTML is wrong So show more code and it'll be easier for others to help you :-)

[jQuery] Re: data is null,while i need ""

2009-09-10 Thread MorningZ
Easy fix $('#verMailDate').attr("value",data.verMailDate); to $('#verMailDate').attr("value","" + data.verMailDate); On Sep 10, 12:17 pm, Junhua Gao wrote: > $.getJSON('/VersionQueryJsonAction',{verID:verid},function(data){ >       $('#verMailDate').attr("value",data.verMailDate); >       $

[jQuery] adding extension property to jCarousel

2009-09-10 Thread W. Young
I can add extension methods to the jcarousel add in such as: jQuery.jcarousel.fn.extend({ position: function() { //alert(this.first-1); } }); jQuery.jcarousel.prototype.position = function() { //alert(this.first-1); }; but I want to get access to the "fir

[jQuery] data is null,while i need ""

2009-09-10 Thread Junhua Gao
$.getJSON('/VersionQueryJsonAction',{verID:verid},function(data){ $('#verMailDate').attr("value",data.verMailDate); $('#statementName').attr("value",data.statementName); })//CampaignJsonAction,function,getJSON if data.verMailDate is null,i need it is "",not "null",who can help me?

[jQuery] saving values from a multi select list.

2009-09-10 Thread shaded
Im using a plugin called select chain and modified it a bit. Right now im trying to pass only selected values of a multi select list through ajax. The following function does a bit more but im concerned with the part that says cust_val: customer.val().join(",") This should return only selected v

[jQuery] Re: Superfish menu problem.

2009-09-10 Thread Reynier Pérez Mira
sholland wrote: > I have installed the superfish menu on a site I am developing and I am > having trouble getting the horizontal setting to work. Here is the > link. itc.contendia.net. It is the top menu and as you can see it > appears to be cut off and the drop down on programs does not work.

[jQuery] Re: key - value

2009-09-10 Thread TiGeRWooD
I found more easy :) $('#id').autocomplete('file.php',{ width: 300, selectFirst: false }).result(function(event, data, formatted) { $('#id_user').val( data[1] ); }); Thanks anyway :)

[jQuery] Problems with styles in jQuery UI

2009-09-10 Thread Reynier Pérez Mira
Hi every: I'm developing a web application in wich I use the latest release of jQuery and jQuery UI. I have created my own theme using the tool provide but jQuery UI Site. I have a problem with Accordion component. The first h3 element of the accordion is align to right and the rest is OK because

[jQuery] input blur event firing twice

2009-09-10 Thread Ste
Im having a problem with a form im developing. The form is held in a table. I have had to modify the keypress events for navigation and so keydown now gets focus on the input immediately below the current one. I have some validation going on on the input which fires on blur() of the current inpu

[jQuery] Re: "JQuery is undefined" error

2009-09-10 Thread Torsten Edelmann
Probably just a typo in your own script. It's "jQuery", noch "JQuery". Has happened to me before. ;) On 10 Sep., 09:23, alexarsh wrote: > Hi, > > I have an html where I use jquery 1.3.2. The problem is that I get > "JQuery is undefined" error messages in IE7. The site work great in > firefox and

[jQuery] Superfish menu problem.

2009-09-10 Thread sholland
I have installed the superfish menu on a site I am developing and I am having trouble getting the horizontal setting to work. Here is the link. itc.contendia.net. It is the top menu and as you can see it appears to be cut off and the drop down on programs does not work. Does anyone have any ide

[jQuery] Problem with parameter message

2009-09-10 Thread gannher
Hello I'm trying to use blockUI. It's work fine but when i want to customize the message, i see again "Please wait..." My code: $(document).ready(function() { $.blockUI({ message: 'test' }); setTimeout($.unblockUI, 2000); }); Version blockUI: jquery.blockUI.1.33.js Version JQue

[jQuery] Re: IE7 submenu display problem

2009-09-10 Thread Sajuuk
Same here, whatever it is its got nothing to do with either one of those CSS properties. On Sep 10, 10:17 am, TheoSoft wrote: > Just a note that I've removed all z-index and position:relative from > relevant elements on my test site and no avail. Still getting the > issue. > > On Sep 10, 9:09 am

[jQuery] Easy show()/hide() Question

2009-09-10 Thread GLSmyth
I am missing something fundamental and am sure that someone can point me in the right direction. I have a list like so: DD Santuary Stream Winter I have styled it so that the list items float. The class DoNotDisplay hides the unordered list. When

[jQuery] Re: IE7 submenu display problem

2009-09-10 Thread TheoSoft
Just a note that I've removed all z-index and position:relative from relevant elements on my test site and no avail. Still getting the issue. On Sep 10, 9:09 am, TheoSoft wrote: > Doesn't do anything... > > On Sep 10, 4:37 am, rupak mandal wrote: > > > > > hi, > > > This is not a problem of z-i

RE: FW: [jQuery] Re: Newbie: Cannot get .text() to work with IE7

2009-09-10 Thread Knight, Doug
Thank you very much, Brett, worked like a charm! Guess I was googling on the wrong issue. For all, here is the revised script: Read XML $(document).ready(function(){ // Changes start here $.ajax({ type: "GET",

[jQuery] Re: New Edit-in-Place Plugin with dynamic selects, datepicker

2009-09-10 Thread Jacob
I've posted a very simple demo page. Here is the URL: http://www.jacobterry.com/editinplace.php On Sep 9, 2:21 pm, "Cesar Sanz" wrote: > + 1 a demo page will be great > > > > - Original Message - > From: "MorningZ" > To: "jQuery (English)" > Sent: Tuesday, September 08, 2009 2:51 PM

Re: FW: [jQuery] Re: Newbie: Cannot get .text() to work with IE7

2009-09-10 Thread Brett Ritter
On Thu, Sep 10, 2009 at 8:21 AM, Knight, Doug wrote: > Sure could use some help on this one. Does anyone on the list have any clue > why the .text() function works differently between FF and IE7? I’ve Okay, so here's the basics: It isn't .text(), that's just showing the problem. The problem is

[jQuery] Re: IE7 submenu display problem

2009-09-10 Thread TheoSoft
Doesn't do anything... On Sep 10, 4:37 am, rupak mandal wrote: > hi, > > This is not a problem of z-index, this is due to position:relative. If you > remove the position:relative absolute > from #main-content, I think it will work. > > Thanks > Rupak > > > > On Thu, Sep 10, 2009 at 2:02 AM, Saju

[jQuery] Re: Ajax not working in Firefox

2009-09-10 Thread Nick Fitzsimons
2009/9/10 Karl Hungus : > > I can see the form data in the body of the post too, using both Live > HTTP Headers and Charles. Which I guess only confuses me more. :-) > > One thing I did notice, is the Content-Type attribute of the request > header has "application/x-www-form-urlencoded; charset=UT

FW: [jQuery] Re: Newbie: Cannot get .text() to work with IE7

2009-09-10 Thread Knight, Doug
Sure could use some help on this one. Does anyone on the list have any clue why the .text() function works differently between FF and IE7? I've submitted this question for over a week now, and had no suggestions at all. Doug From: Knight, Doug Sent: Tuesday, September 08, 2009 9:40 AM To: jquer

[jQuery] Re: HTML code inside script tag, how access to it with DOM???

2009-09-10 Thread Brett Ritter
On Wed, Sep 9, 2009 at 6:08 AM, Mariano wrote: >       >          
some test
>       > Now I have the will to access to the text inside test div but the code > $('#test').text(); > doesn't work, matter of fact nothing is returned. The contents of the script tag aren't part

[jQuery] "JQuery is undefined" error

2009-09-10 Thread alexarsh
Hi, I have an html where I use jquery 1.3.2. The problem is that I get "JQuery is undefined" error messages in IE7. The site work great in firefox and safari. I include the jquery before any other plugins, I have a slash in the beginning of src and I can see the javascript if I open the link dire

[jQuery] Jquery UI tabs height

2009-09-10 Thread Vidusha Madan
Hi I am using the Jquery UI tabs but I am not able to adjust the height of the tabs. The first tab appears to have more height than the other tabs. I have tried using fxAutoHeight :true option but that doesn't work either. Moreover on selecting a tab, the other tabs get displaced from their origi

[jQuery] Flash content in BlockUI ovelay. Someone having experience?

2009-09-10 Thread tersyxus
I'm about to put a flash progress animation in a div to be used by BlockUI. It works fine in most browsers but in Firefox 3 an empty white space is displayed instead of the flash. The white space has the same size as the flash object so I guess I'll have to look for a Firefox vs. Flash related tri

[jQuery] is this possible with jquery

2009-09-10 Thread TenthWeb.com
I am impressed with the flash stuff here and want to do this with jquery. http://www.nepenthe.com.au/go/online-shop I found a slider here: http://jqueryui.com/demos/slider/#range But the main thing is how to do the effect on sliding slider and ticking checkboxes. One thing would be getting slide

[jQuery] [Autocomplete] result accompanied with blur cause non-deterministic behavior

2009-09-10 Thread Joel D'Souza
I have the blur event hooked in to reset hidden field values. The autocomplete plugin is set up as below and produces the behavior described in the comments: $("#test").autocomplete(data, { formatItem: function(item) { return item.text; } }).result(function(event, item) { // This exec

[jQuery] Re: Repeatable problem with Firefox 3 and AJAX

2009-09-10 Thread candlerb
OK, problem solved sufficiently for now. (1) The workaround is to set $.ajaxSetup({ cache: false }); Then ?_= is added to each AJAX request, so a new request hits the server each time. As it's a fresh XHR request, I'm not getting the wrong "HTML" (non-XHR) version of the page inserted. This i

[jQuery] Re: Ajax not working in Firefox

2009-09-10 Thread Karl Hungus
I can see the form data in the body of the post too, using both Live HTTP Headers and Charles. Which I guess only confuses me more. :-) One thing I did notice, is the Content-Type attribute of the request header has "application/x-www-form-urlencoded; charset=UTF-8" for FF3, but only "application

[jQuery] Re: Repeatable problem with Firefox 3 and AJAX

2009-09-10 Thread candlerb
Additional data point: if I modify the page to replace jQuery with native Javascript+DOM, the problem goes away. This seems to be because hitting the 'back' button reverts straight to the previous page as it was (complete with its AJAX updates), rather than refreshing the original HTML and then re

[jQuery] Re: IE7 submenu display problem

2009-09-10 Thread rupak mandal
hi, This is not a problem of z-index, this is due to position:relative. If you remove the position:relative absolute from #main-content, I think it will work. Thanks Rupak On Thu, Sep 10, 2009 at 2:02 AM, Sajuuk wrote: > > I've got the same problem on a site I am working on right now. I > tr

[jQuery] Re: [autocomplete] Missing space character in request

2009-09-10 Thread alexbodn . groups
think of a patch with an option with this effect. On Sat, Aug 8, 2009 at 17:00, aw wrote: Hi, Using the autocomplete plugin works fine. But submitted values are trimmed. Is it possible to send data with ending space characters like the escape function in JavaScript? Thanks. -- alex s

[jQuery] Re: autocomplete

2009-09-10 Thread alexbodn . groups
i'm not sure i'd make it part of the widget, since it doesn't treat the options linearly. you may create any element with an onclick event to get the same values autocomplete would and display them similar to autocomplete list too. On Mon, Aug 17, 2009 at 00:06, ser999 wrote: I am new to usi

[jQuery] Repeatable problem with Firefox 3 and AJAX

2009-09-10 Thread candlerb
I have found a problem with Firefox 3 and AJAX, and give code to replicate it below. The problem is when you have a resource, e.g. /docs/1234, which is fetched both directly as a web page and as AJAX (XMLHttpRequest). The server detects these cases based on the X-Requested-With: XMLHttpRequest he

[jQuery] Re: [Autocomplete] Autofill & Comma Seperator Issues

2009-09-10 Thread alexbodn . groups
please try the demo at http://jquery.bassistance.de/autocomplete/demo/, on the field Multiple Cities (local), the name Oregon. On Tue, Sep 1, 2009 at 11:49, Mil wrote: Hi, I am trying to use this autocomplete http://docs.jquery.com/Plugins/Autocomplete but I'm having some issues with it.  I'

[jQuery] Re: [Autocomplete] Detect when autocomplete list is visible

2009-09-10 Thread alexbodn . groups
look at version 1.1 from bassist On Tue, Sep 8, 2009 at 10:18, CharlesW wrote: Hello, I'm detecting Enter/Return keyup requests, what's a good way to ignore them when the autocomplete list is visible? I tried using $('.ac_results').css('display'), but that doesn't work reliably (it's always

[jQuery] Re: [Autocomplete] Receiving data in XML

2009-09-10 Thread alexbodn . groups
play with the options to autocomplete: dataType, parse are handling the conversation with the server. On Wed, Sep 9, 2009 at 16:11, Joao Gilberto wrote: Hi, First of all, I want to thank you about your excellent Autocomplete plugin for jQuery. So, I plan use your component in my open sourc

[jQuery] Re: Form got submitted when I hit enter on select the value in autocomplete box

2009-09-10 Thread alexbodn . groups
this is being treated in the current 1.1 version from bassist On Sat, Aug 29, 2009 at 23:42, pankaj sharma wrote: Any help on this? On Mon, Aug 24, 2009 at 11:14 PM, pankaj sharma wrote: Hi  All, In my application,there are several autocomplte field is available. When I type "pank" and then

[jQuery] Re: [autocomplete] a few improvements to autocomplete

2009-09-10 Thread alexbodn . groups
On Wed, Sep 9, 2009 at 18:31, wrote: hello friends, i have done a few improvements to the autocomplete module, to fix problems and improve functionality: added selectOnly option to autoselect a result if there's only one. this may save you a click. moved the loading indicator to the left