[jQuery] Re: Problems with arrays got from php

2010-01-04 Thread Monotoba
To allow multiple selection the parameter name must be an array 1 2 Notice the array braces [] following the name parameter. Without them the parameter can only hold one item at a time. On the server side you'll need to process cats as an array: $cats = array(); $cats = $_POST['cats']; fore

[jQuery] Re: Problems with quotes

2009-11-20 Thread morwo
Is the form validation on the server side? Is it done by PHP? If 2x yes then turn off magic_quotes in your PHP configuration on your server.

[jQuery] Re: Problems with quotes

2009-11-19 Thread MorningZ
Why are you using both ".text()" and ".html()" ? On Nov 19, 5:59 am, heohni wrote: > Hi, > > I have databse entries like: CUBE Streamer  'sloping' > ULTEGRA 3 x 10 (99€/Woche) > > I use this text with jquery and I am writing this text into a div. > When reloading my page, because of a form valid

[jQuery] Re: Problems with load() in IIS?

2009-10-16 Thread Scogle
To be honest, I'm not entirely sure what's going on here. I'm trying to figure out someone else's code, so I'm just going on a hunch about what the problem might be. I have some data stored in an html file that represents locations on a map. When the script tries to load the file, I get a 405 m

[jQuery] Re: Problems with load() in IIS?

2009-10-15 Thread James
I think that by default in IIS, .html filetypes will not accept POSTs. load() in jQuery is GET by default but if you put something in the data parameter, it will a be converted to a POST. Do you think that's what's happening? Unless your .html file has be configured to do server-side processing, I

[jQuery] Re: Problems with load() in IIS?

2009-10-15 Thread Scogle
Thanks, I'll look into that. I had a feeling that it was a setup issue, but I wasn't really sure yet. I'm just trying to load() an html file, which is why this issue seems so strange. On Oct 12, 7:45 pm, James wrote: > Sorry, I meant VERB, not VERY: > > GET (and maybe POST) VERB > > On Oct 12,

[jQuery] Re: Problems with the form plugin (no redirect to the next page)

2009-10-13 Thread Mike Alsup
That page is not using the Form plugin; it appears to be using Jörn's Validation plugin. Also, I'm not seeing the problem you described. When I check the box and submit the form the next page is loaded. Mike On Oct 13, 1:16 am, Laire wrote: > Hello, > I try to use the malsup form Plugin. > >

[jQuery] Re: Problems with load() in IIS?

2009-10-12 Thread James
Sorry, I meant VERB, not VERY: GET (and maybe POST) VERB On Oct 12, 3:42 pm, James wrote: > It sounds like a server setup issue. What is the file type/extension > of the file that you're trying to load()? You have to set up the > server so that the GET (and maybe POST) VERY is allowed for that

[jQuery] Re: Problems with load() in IIS?

2009-10-12 Thread James
It sounds like a server setup issue. What is the file type/extension of the file that you're trying to load()? You have to set up the server so that the GET (and maybe POST) VERY is allowed for that file type. On Oct 12, 12:53 pm, Scogle wrote: > I'm working on a project that uses the load() fun

[jQuery] Re: Problems with elements shifting when scripts are activated in IE8 (jscrollpane script)

2009-10-07 Thread Shawn - Eclectic Whimsy
Update. I figured out which area was causing the issues. Zeroed out the margins on the main content area and used padding to place the content where I wanted it. Worked like a charm. Thanks again BaBna for headin' me in the right direction on this. On Oct 7, 11:04 am, BaBna wrote: > Hey there,

[jQuery] Re: Problems with elements shifting when scripts are activated in IE8 (jscrollpane script)

2009-10-07 Thread Shawn - Eclectic Whimsy
I forgot to include the link again, just so it's handy if anyone can take a look: http://www.auntiepea.com/ew/OldFarm/index.html

[jQuery] Re: Problems with elements shifting when scripts are activated in IE8 (jscrollpane script)

2009-10-07 Thread Shawn - Eclectic Whimsy
Thanks so much BaBna. I think you're right about it not having anything to do with the javascript itself. I probably should be asking this in a general web design forum except for that I've never had issues with this shifting (at least not nearly to this degree) on sites that haven't included the

[jQuery] Re: Problems with elements shifting when scripts are activated in IE8 (jscrollpane script)

2009-10-07 Thread BaBna
Hey there, I don't think it has anything to do with the javascript here, it's your CSS or HTML structure: you've got DIV and P on the same level, and you must miss some float or overflow property on some of your DIV. Basically, your div with the "jScrollPaneContainer" class is not pushed below by

[jQuery] Re: Problems with blur/focus when validating a field

2009-09-09 Thread jhm
I came to the same conclusion once I got it working, and found a better way to alert the user. But, there are other occasions where I need to set the focus from within a similar callback where it is useful. So I'm still happy we discussed it. Thanks! On Sep 9, 10:33 pm, Mr Speaker wrote: > I

[jQuery] Re: Problems with blur/focus when validating a field

2009-09-09 Thread Mr Speaker
I think they don't let you hold focus for a reason... I've tried it on a couple of my forms and it's annoying! I wanna leave it blank and come back to it damn it! ;) On Sep 10, 2:27 pm, Mr Speaker wrote: > It's like tabbing to the next field is NOT the default action - but > something more intri

[jQuery] Re: Problems with blur/focus when validating a field

2009-09-09 Thread Mr Speaker
It's like tabbing to the next field is NOT the default action - but something more intrinsic/unrelated. So even if you cancel the default action, it doesn't stop the tab? weird. I was also thinking that it would be a good idea to plugin-erise this functionality, so if there's a better way to do i

[jQuery] Re: Problems with blur/focus when validating a field

2009-09-09 Thread jhm
Thanks! I knew about the validate stuff, it was kind of a quick and dirty example. But I appreciate your bringing it all to my attention. The jQuery docs for blus() say "the default action can be prevented by returning false". Maybe it should be corrected. Your suggestion of using setTimeout pr

[jQuery] Re: Problems with blur/focus when validating a field

2009-09-09 Thread Mr Speaker
I think the problem is that according to the W3C standards, the blur event is not cancelable: They don't seem to want the programmer to be able to mess with a blur... But also, your validation code is a bit buggy anyway: the "ret" variable is undefined and the regex you use will only catch the ca

[jQuery] Re: Problems with minDate on datepicker not allowing before 1999.

2009-09-02 Thread rupak mandal
hi joe, You have to specify the "year range" according to your requirement .By default it is yearRange: '-10:+10' Thanks Rupak On Wed, Sep 2, 2009 at 8:34 PM, hoe`` wrote: > > If I do something like, minDate: new Date(1930, 1-1, 14) > or, minDate: '-70Y' > > The oldest date available will be

[jQuery] Re: Problems with blockUI and the form plugin

2009-08-20 Thread coptang
On Aug 20, 6:25 pm, coptang wrote: :snip: Apologies, was a PEBKAC issue in the end. As I was blocking the whole page the blockUI overlay and message were placed outside of the form. I've now switched to element blocking and blocked an element within my form.

[jQuery] Re: Problems with getJSON between browsers

2009-07-30 Thread Kus
Hi, I to was playing with the Google Latitude Badge API. For some reason jQuery doesnt like it, so what i did was compare what Google returns to what the Flickr example does http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=? The flickr one is

[jQuery] Re: Problems with $.getScript (IE)

2009-06-29 Thread ZLOAder
It was the first i think about. I have tried to add random string to URL No changes. :( On Jun 29, 9:25 pm, James wrote: > Probably the script is being cached. Try changing the url everytime > the getScript function is called. This is commonly done by adding a > time to the url's query string, l

[jQuery] Re: Problems with selectors and this keyword

2009-06-29 Thread waseem sabjee
* *I would do it this way td { background-color:#FFF; } td.hover { background-color:#AAA; } $(function() { var tableColumn = $("td"); tableColumn.hover(function() { // on mouse over $(this).addClass("hover"); }, function() { // on mouse leave $(this).removeClass("hover"); }); }); *EXPLAN

[jQuery] Re: Problems with selectors and this keyword

2009-06-29 Thread Charlie
(this) has to stand alone, you can't use it quite the same way as parent child in your selector most common way to do it is $("this").find("td").css(..); ///looks for td's that are children of (this) or there's an abbreviated method that isn't shown in many examples $("td", this).css(

[jQuery] Re: Problems with selectors and this keyword

2009-06-29 Thread Karl Swedberg
There are a few ways you could do this. Here are two: $('> td', this).css('background', '#ff'); or $(this).children('td').css('background', '#ff'); --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 29, 2009, at 3:58 PM, Coxy wrote: $('.mainTab

[jQuery] Re: Problems with $.getScript (IE)

2009-06-29 Thread James
Probably the script is being cached. Try changing the url everytime the getScript function is called. This is commonly done by adding a time to the url's query string, like: Generate a new time with: var t = new Date().getTime(); http://server.url?roomname=alfa&time=[add time here] On Jun 27, 1

[jQuery] Re: Problems with animate()

2009-05-28 Thread waseem sabjee
lol On Thu, May 28, 2009 at 7:37 PM, GaVrA wrote: > > http://tinyurl.com/m33969 > > On May 28, 7:35 pm, waseem sabjee wrote: > > Just Curious. in standard JavaScript ( not using the JQuey Library ) > > How does animate actually work ? > > and what makes it browser computable ? > > > > On Thu, M

[jQuery] Re: Problems with animate()

2009-05-28 Thread GaVrA
http://tinyurl.com/m33969 On May 28, 7:35 pm, waseem sabjee wrote: > Just Curious. in standard JavaScript ( not using the JQuey Library ) > How does animate actually work ? > and what makes it browser computable ? > > On Thu, May 28, 2009 at 7:01 PM, GaVrA wrote: > > > no problemo :) > > > On M

[jQuery] Re: Problems with animate()

2009-05-28 Thread waseem sabjee
Just Curious. in standard JavaScript ( not using the JQuey Library ) How does animate actually work ? and what makes it browser computable ? On Thu, May 28, 2009 at 7:01 PM, GaVrA wrote: > > no problemo :) > > On May 28, 6:56 pm, waseem sabjee wrote: > > Thanks :) > > > > On Thu, May 28, 2009 a

[jQuery] Re: Problems with animate()

2009-05-28 Thread GaVrA
no problemo :) On May 28, 6:56 pm, waseem sabjee wrote: > Thanks :) > > On Thu, May 28, 2009 at 3:41 PM, GaVrA wrote: > > > You need jqueryUi for this. > > >http://docs.jquery.com/UI/Effects/ColorAnimations > > > Try importing this: > > > http://ui.jquery.com/latest/ui/effects.core.js";> >

[jQuery] Re: Problems with animate()

2009-05-28 Thread waseem sabjee
Thanks :) On Thu, May 28, 2009 at 3:41 PM, GaVrA wrote: > > You need jqueryUi for this. > > http://docs.jquery.com/UI/Effects/ColorAnimations > > Try importing this: > > http://ui.jquery.com/latest/ui/effects.core.js";> > > and see if your background will animate... ;) > > On May 28, 7:20 a

[jQuery] Re: Problems with animate()

2009-05-28 Thread GaVrA
You need jqueryUi for this. http://docs.jquery.com/UI/Effects/ColorAnimations Try importing this: http://ui.jquery.com/latest/ui/effects.core.js";> and see if your background will animate... ;) On May 28, 7:20 am, waseem sabjee wrote: > The one problem I am havingis that  this will refus

[jQuery] Re: Problems with animate()

2009-05-27 Thread waseem sabjee
The one problem I am havingis that this will refuse t work $("#myid").animate({ backgroundColor:"#CCC" }, 600); on the online jquery.com example it works. strangely it refuses for me On Thu, May 28, 2009 at 4:50 AM, GaVrA wrote: > >$(function() { >$('a).click(funct

[jQuery] Re: Problems with animate()

2009-05-27 Thread GaVrA
$(function() { $('a).click(function() { $('#aba').animate({width: '300px'}, 2000); $('#content').animate({width: '454px'}, 2000); }); }); That would make #aba and #content animate when you click any an

[jQuery] Re: problems with ajaxSubmit and files when file(s) not selected

2009-05-20 Thread csetzkorn
Hi, Thanks - I think that did the trick. Christian On May 19, 8:05 pm, Mike Alsup wrote: > > This works fine as long as the user selects a file. The file plus the > > text form elements are send to the server. Some intercepted traffic: > > > -7d92e142190a > > Conten

[jQuery] Re: problems with ajaxSubmit and files when file(s) not selected

2009-05-19 Thread Mike Alsup
> This works fine as long as the user selects a file. The file plus the > text form elements are send to the server. Some intercepted traffic: > > -7d92e142190a > Content-Disposition: form-data; name="UserId" > > 9bdfa5be-0608-4c14-92cd-defc92d64850 > -

[jQuery] Re: Problems with JQuery Cycle Plugin and IE6

2009-05-18 Thread abelafonte
This is exactly what I needed. Had no idea what was going on when the slide mysteriously had a background color that matches a div three levels up in the hierarchy. I guess there's no fix for the lack of transparency with this attribute set? On May 11, 1:37 pm, Maksym Melnyk wrote: > Here's th

[jQuery] Re: problems with each() and JSON

2009-05-15 Thread martin horton
Thanks for your example. Now its working like it should :-D

[jQuery] Re: problems with each() and JSON

2009-05-15 Thread Mike Alsup
> So here is finally my problem. I can just get numbers or bools of this JSON > document. When i am trying to get a string e.g. nothing happens. No fanncy > things, and no errors in my firebug console. I think its a problem with the > each() function. I tried everything i could imagine till now.

[jQuery] Re: Problems with rounded corners plugin

2009-05-14 Thread RCT_Nitro
It is my understanding that the pageLoad gets called when the aspx page is loaded... On May 13, 9:59 pm, Mike Alsup wrote: > > Attached is my page code, I'm trying to make the corners rounded on > > the div div#LoginArea - but try as I may I'm not able to work out why > > this won't work - would

[jQuery] Re: Problems with rounded corners plugin

2009-05-13 Thread Mike Alsup
> Attached is my page code, I'm trying to make the corners rounded on > the div div#LoginArea - but try as I may I'm not able to work out why > this won't work - would be grateful for thought on what I've done > wrong... >     >         function pageLoad() { >             $("div#LoginArea").corn

[jQuery] Re: Problems with JQuery Cycle Plugin and IE6

2009-05-11 Thread Maksym Melnyk
Here's the solution from the Mike Alsup. "Hi Shane, There are two cleartype options in Cycle, and unfortunately one of them is not documented (yet). The general purpose of the cleartype logic in Cycle is to workaround a rendering issue in IE when cleartype is enabled on the system. When a Wind

[jQuery] Re: Problems with special chars in jQuery Form plugin

2009-05-07 Thread Remko
That's what i thought ass well, i've checked my chartset of my script, database and collation. All of them are utf-8. The form page ass well. On 7 mei, 17:57, Giovanni Battista Lenoci wrote: > Remko ha scritto:> Hi, > > > I use the Form Plugin to store some user info in my database. When > >

[jQuery] Re: Problems with special chars in jQuery Form plugin

2009-05-07 Thread Giovanni Battista Lenoci
Remko ha scritto: Hi, I use the Form Plugin to store some user info in my database. When inserting the data i have some troubles with special chars. Words like Rëmkó will be converted to Rëmkó. I submit the data to a file like this $DB->query("INSERT INTO exp_members (screen_name) VALUES ('

[jQuery] Re: problems with filter() a variable ajax response

2009-04-04 Thread Mathew
i am also trying jQuery("#jsc_leftbody", lt).html(); i cant for the life of me see why this is not working correct if helps the page is here: http://undergroundinnertainment.com/2009/index.php?option=com_comprofiler&task=userProfile&user=64&Itemid=67 On Apr 4, 2:13 am, Mathew wrote: > I ma havi

[jQuery] Re: Problems with radio buttons

2009-04-02 Thread echomrg
On Apr 2, 6:37 pm, "Richard D. Worth" wrote: > Change > > @name= > > to > > name= Thanks! Working perfectly now. Marcello

[jQuery] Re: Problems with radio buttons

2009-04-02 Thread Richard D. Worth
Change @name= to name= The @attribute= syntax was deprecated in jQuery 1.2, removed in 1.3 (see http://docs.jquery.com/Release:jQuery_1.3#Changes ) so your selector is failing. - Richard On Thu, Apr 2, 2009 at 11:19 AM, echomrg wrote: > > Hi all, i'm having a problem reading checked values

[jQuery] Re: problems with dynamic click event... how do I get the index in there ?

2009-03-20 Thread jQuery Lover
Why don't you use this syntax so .each() would pass the current index for you... $( calculationsArray ).each(function( INDEX ){ Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Mar 20, 2009 at 5:29 PM, hybris77 wrote: > > hi folks, if anyone could direct me in the

[jQuery] Re: Problems with

2009-03-06 Thread Rob
IE allows users to type in the value in a file field, it's Firefox that prevents that. Also I think the syntax there may be wrong. I would use the name of the file field and change it's value attribute to blank. HTML: jQuery (using 1.3.x) $("#button").click(function(){ $("input[name='f

[jQuery] Re: Problems with

2009-03-06 Thread Renato Bezerra
Hi, Martijn Houtman Thanks for help me. I look for a other solution for my problem. Thank you so much. Bye. On 6 mar, 10:29, Martijn Houtman wrote: > On Mar 6, 2:24 pm, Renato Bezerra wrote: > > > $('#button').click(funtion(){ > >         $('#fileName').val(''); > > > }); > > > In the Fir

[jQuery] Re: Problems with

2009-03-06 Thread Martijn Houtman
On Mar 6, 2:24 pm, Renato Bezerra wrote: > $('#button').click(funtion(){ >         $('#fileName').val(''); > > }); > > In the Firefox it works, but in the IE7 don't works. I believe this is a security issue, where the browser does not allow you to set the value for a file input, because some mal

[jQuery] Re: Problems with jQuery 1.3.2

2009-03-04 Thread Dave Methvin
It has some old selectors. I just had to update it for a project myself. There were just 4 lines that I changed, which got it to work for my situation. There may be other issues for more complex trees; I just had a two-level tree hierarchy. - var branches = $("li[>ul]", this); + var b

[jQuery] Re: Problems with jQuery 1.3.2

2009-03-02 Thread Antivanity
Anyone ? On Feb 27, 2:47 pm, Antivanity wrote: > Having an issue when using treeview plugin with jq 1.3.2. I can get it > to work in jq 1.2... > Pretty much, from what i can tell, its not applying the classes to the > ul and li tags. I think it has something to do with the way the > selectors ar

[jQuery] Re: Problems with the simple jquery suckerFish menu?

2009-02-09 Thread mjlaw...@us.ibm.com
I'm not sure if my previous response made it, trying to configure this to work with my work email. However, is there any way you can provide a code snippet of what you are trying to fix here? On Feb 9, 10:58 am, 123gotoandplay wrote: > Hi there, > > I am having problems with the suckerFish menu

[jQuery] Re: Problems with the simple jquery suckerFish menu?

2009-02-09 Thread Michael Lawson
Hi, is there any way you can provide a code sample of how you are using this? Thanks cheers Michael Lawson Content Tools Developer, Global Solutions, ibm.com Phone: 1-919-517-1568 Tieline: 255-1568 E-mail: mjlaw...@us.ibm.com 'Examine my teachings critically, as a gold assayer would test

[jQuery] Re: Problems with finding parental -tag

2009-01-19 Thread Christoph Neymeyr
Thanks for the help! Stephan - this solved it, sorry that I missed this basic one. Klaus - yes, you´re of course right, just typed this to illustrate my problem to make people to get the point. Thanks for your reply though. Christoph

[jQuery] Re: Problems with finding parental -tag

2009-01-19 Thread Klaus Hartl
First of all, you need to fix your HTML. An anchor is an inline element and may not contain div, p etc. This may give you unexpected results cross-browser and scripting on top of an invalid DOM is not a good idea to begin with. --Klaus On 19 Jan., 12:11, Christoph Neymeyr wrote: > Hi, > > I ha

[jQuery] Re: Problems with finding parental -tag

2009-01-19 Thread Stephan Veigl
how about: $(".thisClass").parents("a"); by(e) Stephan

[jQuery] Re: Problems with the New API Browser - Bug in AIR APP

2009-01-18 Thread Giovanni Battista Lenoci
Remy Sharp ha scritto: Ouch! Sorry about that. I didn't have time to add functionality that saved the window position - but when this is in (v. soon), I'll initialise the window at 640x480, then changing the window's position and size will be saved for the next time it's opened. Cheers, Remy

[jQuery] Re: Problems with the New API Browser - Bug in AIR APP

2009-01-18 Thread Remy Sharp
Ouch! Sorry about that. I didn't have time to add functionality that saved the window position - but when this is in (v. soon), I'll initialise the window at 640x480, then changing the window's position and size will be saved for the next time it's opened. Cheers, Remy. On Jan 17, 11:08 am, G

[jQuery] Re: Problems with the New API Browser - Bug in AIR APP

2009-01-17 Thread Giovanni Battista Lenoci
@rem I've tried contacting you on twitter, but I'm new to it, and don't know If you received my message. I've installed the AIR api browser, and I love it, but when I open it the dimensions of the windows are greater than my desktop resolution (1280x800 on windows xp). Here you can see a s

[jQuery] Re: Problems with the New API Browser

2009-01-16 Thread Alexandre Plennevaux
Well, i for one really love the new API interface _ such a much less noisy interface than the docs.jquery.com interface! clearer, snappier. it turns out i don't use the navigation menu much, i use the filter box mostly. that's probably why i'm not so annoyed by its limits. really liked the interfa

[jQuery] Re: Problems with the New API Browser

2009-01-15 Thread Remy Sharp
I think the animation of menus is one for the options as well then. I understand what you mean, once you're familiar with it, you just want to get on with it. On Jan 15, 9:28 pm, Ricardo Tomasi wrote: > Two things bother me more: > > - James' #3 point, that other categories hide when you click

[jQuery] Re: Problems with the New API Browser

2009-01-15 Thread Ricardo Tomasi
Two things bother me more: - James' #3 point, that other categories hide when you click one, an accordion would be a better fit for quick navigation. - the subcategories. I like to see the method's names directly, deciding between "Hierarchy" or "Child filters" is not an intuitive task. They shou

[jQuery] Re: Problems with the New API Browser

2009-01-15 Thread Remy Sharp
Hi James, Thank you for your detailed feedback - all good points. I want to push out another release when 1.3.1 goes live - so I'd like to get some, if not all, of the feedback addressed (including others). 1 + 2) almost the same thing - the first problem I see is the AIR browser, which obvious

[jQuery] Re: Problems with the New API Browser

2009-01-15 Thread MorningZ
I'd like to see the ability to post a link that goes directly to a given summary page for a function makes it easier to direct people to a certain area (say for instance, posting in this mailing list) On Jan 15, 11:43 am, Pappy wrote: > My biggest issue with the new site is a lack of 'summa

[jQuery] Re: Problems with the New API Browser

2009-01-15 Thread Pappy
My biggest issue with the new site is a lack of 'summary' screens. I love being able to look at one page and take in all functions of a various type. Especially when there are two that are awfully similar and I can scan back and forth to differentiate between them. On Jan 14, 8:22 pm, James Van

[jQuery] Re: Problems with show() and submit button

2008-12-28 Thread Stephen
Figured this out myself, though I'm open to suggestions for a better workaround. It's actually not the show() that's causing the problem; it's the hide() that's called on the blur event. Details. 1. User clicks on input field. 2. livequery captures the focus event for that field and reveals the h

[jQuery] Re: problems with async in IE but not mozilla

2008-12-18 Thread TomG
I am having the same problem I think (apologies if I accidentally posted twice). The standard jquery call seems to work fine. I haven't broken this down into a simple page yet that I could try with FireFox, but I will do that next. I'm in IE6&7 // This never calls my WebMethod... $("#

[jQuery] Re: problems with async in IE but not mozilla

2008-12-18 Thread MorningZ
Ah, i wasn't sure that you tried FF using Studio's web server, that wasn't clear Not sure what else to offer except that in studio, the web server (and the application) "run as" your logged in account where IIS is not doing so unless setup that way.. so i'd take a guess that it was a fi

[jQuery] Re: problems with async in IE but not mozilla

2008-12-18 Thread paulcurtis
As i mentioned the Mozilla Firefox browser runs the page perfectly (i have firebug too). But the exact same page does not work in IE 7 or IE 6 and when i say doesn't work it doesn't load the treeview using the JSON data. A normal treeview does work. However on the same page as this test i load the

[jQuery] Re: problems with async in IE but not mozilla

2008-12-18 Thread MorningZ
How about using Firefox (and more importantly Firebug) from Studio (right click on aspx file, choose "Browse With"), to make sure all libraries are getting loaded On Dec 18, 1:28 pm, paulcurtis wrote: > Hi, > > I really can't work this out. Im testing the async version of > treeview, just ret

[jQuery] Re: Problems with more than one AJAX request at a time

2008-12-13 Thread hotdog...@gmail.com
On Dec 13, 11:05 am, George wrote: > It has nothing to so with AJAX. > You did not say what you using on your server side so i can not tell. > > But a lot of frameworks like ASP or ASP.NET will serialize requests > made from the same Sesssion (browser). To avoid programmers having to > manage con

[jQuery] Re: Problems with more than one AJAX request at a time

2008-12-13 Thread George
It has nothing to so with AJAX. You did not say what you using on your server side so i can not tell. But a lot of frameworks like ASP or ASP.NET will serialize requests made from the same Sesssion (browser). To avoid programmers having to manage concurent access to resources in Session object.

[jQuery] Re: Problems with more than one AJAX request at a time

2008-12-12 Thread hotdog...@gmail.com
On Dec 12, 5:07 pm, "Josh Nathanson" wrote: > It looks like what you are doing there is called long polling, check this > out: > > http://en.wikipedia.org/wiki/Comet_(programming) > > -- Josh Ah, thanks for pointing me to that. Unfortunately, it doesn't seem to work in jQuery. As far as I can t

[jQuery] Re: Problems with more than one AJAX request at a time

2008-12-12 Thread Josh Nathanson
, 2008 3:18 PM To: jQuery (English) Subject: [jQuery] Re: Problems with more than one AJAX request at a time On Dec 12, 1:02 pm, "Josh Nathanson" wrote: > Yes, you should be able to fire the other requests.  Maybe you could post a > little code. Ah, thank you for your quick resp

[jQuery] Re: Problems with more than one AJAX request at a time

2008-12-12 Thread hotdog...@gmail.com
On Dec 12, 1:02 pm, "Josh Nathanson" wrote: > Yes, you should be able to fire the other requests.  Maybe you could post a > little code. Ah, thank you for your quick response! Here's the relevant part of my code: http://paste2.org/p/114906 This is in the section of my page. What I'm trying to d

[jQuery] Re: Problems with more than one AJAX request at a time

2008-12-12 Thread Josh Nathanson
Yes, you should be able to fire the other requests. Maybe you could post a little code. -- Josh -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of hotdog...@gmail.com Sent: Friday, December 12, 2008 10:48 AM To: jQuery (English) Subject

[jQuery] Re: Problems with Validate's errorPlacement

2008-12-12 Thread knal
That's not the case, could it have something to do with the errorElement ? On Dec 12, 10:46 am, "Jörn Zaefferer" wrote: > The label is probably set to display:block. You could overrid that > with display:inline !important > > Jörn > > On Fri, Dec 12, 2008 at 10:23 AM, knal wrote: > > > Don't kn

[jQuery] Re: Problems with Validate's errorPlacement

2008-12-12 Thread Jörn Zaefferer
The label is probably set to display:block. You could overrid that with display:inline !important Jörn On Fri, Dec 12, 2008 at 10:23 AM, knal wrote: > > Don't know how, but apparently somehow the system got kind of excited > posting my message... > > Anyway Jörn, thanks, i'm getting the message

[jQuery] Re: Problems with Validate's errorPlacement

2008-12-12 Thread knal
Don't know how, but apparently somehow the system got kind of excited posting my message... Anyway Jörn, thanks, i'm getting the message in the right place now, *but* for some reason it also adds a break ( ) or something before the text, and that breaks my layout. Is there any way to fix this?

[jQuery] Re: Problems with Validate's errorPlacement

2008-12-11 Thread Jörn Zaefferer
Try this: errorPlacement: function(error, element) { error.appendTo(element.prev()); } Jörn On Thu, Dec 11, 2008 at 3:30 PM, knal wrote: > > Hi there, > > I'm using Validate on my website, but i'm having difficulties with the > errorPlacement. > > In simple a part of my f

[jQuery] Re: Problems with sortable()

2008-11-26 Thread 徐显峰
Who is the use of Gtalk? 2008/11/27 René <[EMAIL PROTECTED]> > > Yes, but additionally, the IDs need to have an underscore separator, > for some reason. > > item_1 > a_1 > car_2 > > etc. > > There needs to be an underscore between the first alpha character and > the number. > > On Nov 26, 3:12 pm

[jQuery] Re: Problems with sortable()

2008-11-26 Thread René
Yes, but additionally, the IDs need to have an underscore separator, for some reason. item_1 a_1 car_2 etc. There needs to be an underscore between the first alpha character and the number. On Nov 26, 3:12 pm, ajpiano <[EMAIL PROTECTED]> wrote: > the ID attribute is not allowed to start with a

[jQuery] Re: Problems with sortable()

2008-11-26 Thread ajpiano
the ID attribute is not allowed to start with a number. --adam On Nov 26, 5:09 pm, René <[EMAIL PROTECTED]> wrote: > OK, I figured out my problem. > > The items need to have an ID in the form of "item_1". > > On Nov 26, 2:07 pm, René <[EMAIL PROTECTED]> wrote: > > > Can someone tell me why seri

[jQuery] Re: Problems with sortable()

2008-11-26 Thread René
OK, I figured out my problem. The items need to have an ID in the form of "item_1". On Nov 26, 2:07 pm, René <[EMAIL PROTECTED]> wrote: > Can someone tell me why serialize returns nothing? > > > 123 > abc > 456 > xyz > > > http://ajax.googleapis.com/ajax/ > libs/jquery/1.2.6/jquery.min.j

[jQuery] Re: Problems with Multiple File Upload

2008-11-10 Thread BB
Maybe you should first learn how to upload one file with PHP: http://de2.php.net/manual/en/features.file-upload.php and the the multiple way: http://de2.php.net/manual/en/features.file-upload.multiple.php Instead of $_POST use $_FILES On 9 Nov., 23:32, dmackerman <[EMAIL PROTECTED]> wrote: > I

[jQuery] Re: Problems with the JSON return from the jQuery.ajax() method

2008-11-06 Thread Augusto TMW
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On > > Behalf Of Augusto TMW > Sent: Wednesday, November 05, 2008 1:56 PM > To: jQuery (English) > Subject: [jQuery] Re: Problems with the JSON return from the jQuery.ajax() > method > > Hi, thanks about yo

[jQuery] Re: Problems with the JSON return from the jQuery.ajax() method

2008-11-05 Thread Jeffrey Kretz
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Augusto TMW Sent: Wednesday, November 05, 2008 1:56 PM To: jQuery (English) Subject: [jQuery] Re: Problems with the JSON return from the jQuery.ajax() method Hi, thanks about your answer. This is a example of my JSON: {"mes&quo

[jQuery] Re: Problems with the JSON return from the jQuery.ajax() method

2008-11-05 Thread Augusto TMW
Hi, thanks about your answer. This is a example of my JSON: {"mes":{ "numero":"11", "ano":"2008", "reunioes": [ { "dia":"27", "horario":"15:50", "local":"lorem ipsum",

[jQuery] Re: Problems with the JSON return from the jQuery.ajax() method

2008-11-05 Thread Choan Gálvez
Hi. On Nov 4, 2008, at 10:48 PM, Augusto TMW wrote: Hi, I'm trying do return a JSON with a $.ajax() method. here is my entire function: function carregaMes(d){ if(!(_reunioes["reg"+d.month+d.year])){ $.ajax({ url: "reunioes.jsp", data: "mes="+d.mont

[jQuery] Re: Problems with find()

2008-10-15 Thread ricardobeat
Hi, It does find only descendant elements. It's likely a fault in your plugin code, without seeing it one can just guess. Try using $('li',this), maybe you get lucky :) - ricardo On Oct 15, 9:46 am, less than zero <[EMAIL PROTECTED]> wrote: > Hi, > > I'm having some problems with a plugin I'm

[jQuery] Re: Problems with IE 6

2008-09-29 Thread Ca-Phun Ung
On Tue, Sep 30, 2008 at 9:54 AM, andrew <[EMAIL PROTECTED]> wrote: > > Is there something special I have to do in IE to get jquery working Nope, jQuery should work in IE6 out-of-the-box > do I need to put all jquery calls within a > 'jQuery(document).ready(function($) { ' at the top of the pag

[jQuery] Re: Problems with "auto height" of pages

2008-09-17 Thread RichUncleSkeleton
Useful page. The example code didn't really work for some reason but I took the theory and made it work! Still unsure why the jQuery was playing up though - I pin-pointed that it was the height of #main being reported incorrectly. I found the options to include the margin - is this correct syntax

[jQuery] Re: Problems with Content-Type header set to text/xml

2008-08-25 Thread BBrian
I was having similar problems today and it turned out I had blank lines in my php script, before I had http://ie2.php.net/header has an example that uses on the line before . You can check the content type returned by hitting CTRL+I in Firefox, though it will be pretty apparant if it is the cor

[jQuery] Re: Problems with Content-Type header set to text/xml

2008-08-23 Thread Arun Kumar
No solutions??? On Aug 17, 2:42 pm, Arun Kumar <[EMAIL PROTECTED]> wrote: > A small correction, > > If I set that header, it is not working in FF. If I remove that > header, it is not working in IE 7. > > Than I added another parameter to my ajax request, dataType: "text/ > xml". This time, If I

[jQuery] Re: Problems with Form Plugin

2008-08-21 Thread Mike Alsup
> I have a form page here: > > http://jimdavis.org/test/form1.php > > and the page for the form post here: > > http://jimdavis.org/test/comment.php > > Data from the form is not getting written to the comment.php file. > > At the moment comment.php is a completely empty file, no > , etc. Tried i

[jQuery] Re: Problems with accordion plug in

2008-06-30 Thread Jörn Zaefferer
Sorry, didn't see the link at first. The selected-class is added to all links due to the navigation:true being set. It matches the href-attribute of your links against the current location, and as they all contain nothing but "#", they all seem to match. Try to remove the navigation option or se

[jQuery] Re: Problems with accordion plug in

2008-06-30 Thread Jörn Zaefferer
Could you upload a testpage and post the URL here? Jörn On Sat, Jun 28, 2008 at 2:38 PM, kirstyburgoine <[EMAIL PROTECTED]> wrote: > > Hi, > I'm having a few problems with the accordion plugin. > > When the page loads it automatically adds the class 'selected' to all > my links. It shouldn't do

[jQuery] Re: Problems with jQuery click functions embedded in AjaxSubmit Form Results

2008-06-26 Thread Adam
I have worked this out to being due to the items not being part of the DOM when the page is loaded. I am now using live query to get around this issue. Sorry for posting before looking properly. Adam On Jun 26, 2:09 am, Adam <[EMAIL PROTECTED]> wrote: > Hi, > > I have a page which shows data fo

  1   2   3   >