Re: [jQuery] Abridged summary of jquery-en@googlegroups.com - 27 Messages in 13 Topics

2010-01-25 Thread traoux
Bonjour, je suis absent du 21 janvier au 8 février. En cas d'urgence veuillez téléphoner à l'agence au 04.92.45.18.05. Merci et à bientôt ! Thierry Raoux

[jQuery] Re: jQuery now integrated into Visual WebGui web/cloud platform

2010-01-25 Thread MISS_DUKE
Microsoft is providing a proper visual environment, then WHY should we need this Visual WebGui??!! On Jan 25, 2:57 am, NCSM chaba...@gmail.com wrote: Gizmox, the developer of Visual WebGui web/cloud applications platform announced the release of its Visual WebGui 6.4 beta 1 version, with

[jQuery] Bug in autocomplete plugin

2010-01-25 Thread Nandan
Hi I am using auto-complete plugin with options { url:'http://localhost:8080/sdfsdfsd.html', minChars:0 //other relevent options. } I need to list out all options even when user does not enter any value. Ajax call is successfully done when I press Down Arrow or

Re: [jQuery] Abridged summary of jquery-en@googlegroups.com - 27 Messages in 13 Topics

2010-01-25 Thread Mike Heath
UNSUBSCRIBE ME PLEASE!!! - Original Message - From: jquery-en+nore...@googlegroups.com To: Abridged Recipients Sent: Monday, January 25, 2010 12:02 PM Subject: [jQuery] Abridged summary of jquery-en@googlegroups.com - 27 Messages in 13 Topics Today's Topic Summary

[jQuery] Re: Dynamic Selects

2010-01-25 Thread phamquocviet
jQuery(#mySelect).load(something.html , function(){ // set the value here }); Did you do like that or jQuery(#mySelect).load(something.html); // set the value here ... ??? On Jan 24, 9:42 am, Steffan A. Cline stef...@hldns.com wrote: I am wondering if I'm missing

Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-25 Thread Nathan Klatt
On Sun, Jan 24, 2010 at 9:01 PM, Bugman1400 trae.be...@coachmanridge.com wrote: What is the best way to check the JS console? I am currently using MS FP. Should I switch to something like FireFox? If you don't want to switch environments, IE has a devloper toolbar:

[jQuery] Internet Explorer line 1 char 1 code 0

2010-01-25 Thread Toktik
I'm using jQuery+drupal and some jQuery plugins. All is ok with Firefox. But in IE's i'm receiving problem like this. Line: 1 Char: 1 Error: object expected URL: http://businessway.am I have included .js files. How to know where is the problem? In which file? Line 1? Which file? If you can

[jQuery] Re: Internet Explorer line 1 char 1 code 0

2010-01-25 Thread MorningZ
Typically bad HTML leads to that take your URL or the view source text and run it through an HTML Validator On Jan 25, 9:35 am, Toktik toktik...@gmail.com wrote: I'm using jQuery+drupal and some jQuery plugins. All is ok with Firefox. But in IE's i'm receiving problem like this. Line: 1

[jQuery] Re: Internet Explorer line 1 char 1 code 0

2010-01-25 Thread Toktik
No error which can call this type error. On Jan 25, 6:56 pm, MorningZ morni...@gmail.com wrote: Typically bad HTML leads to that take your URL or the view source text and run it through an HTML Validator On Jan 25, 9:35 am, Toktik toktik...@gmail.com wrote: I'm using jQuery+drupal

Re: [jQuery] Re: Internet Explorer line 1 char 1 code 0

2010-01-25 Thread sourabh sharma
You are right Thanks Sourabh http://www.avideogame.com On Mon, Jan 25, 2010 at 8:36 PM, Toktik toktik...@gmail.com wrote: No error which can call this type error. On Jan 25, 6:56 pm, MorningZ morni...@gmail.com wrote: Typically bad HTML leads to that take your URL or the view

[jQuery] Re: Internet Explorer line 1 char 1 code 0

2010-01-25 Thread MorningZ
No error which can call this type error. I do not have any clue what that is suppose to mean.. sorry

[jQuery] Combine jquery.jeditable.js with jquery.autocomplete.js

2010-01-25 Thread Antonio
Hi, Someone can suggest me how to write a custom input to combine autocomplete (http://jquery.bassistance.de/autocomplete/ jquery.autocomplete.js) functionality with inline editing of Jeditable (http://www.appelsiini.net/download/ jquery.jeditable.js)? I want to: 1)set external url to read Json

Re: [jQuery] Combine jquery.jeditable.js with jquery.autocomplete.js

2010-01-25 Thread sourabh sharma
Hi Antonio, Please try autocomplete from below URL. If you are not able to do that then please let me know http://www.pengoworks.com/workshop/jquery/autocomplete.htm Thanks Sourabh Sharma www.avideogame.com On Mon, Jan 25, 2010 at 8:51 PM, Antonio antonio.pie...@gmail.com wrote: Hi,

[jQuery] multiple file upload

2010-01-25 Thread andreea
i would like to get the path of the file when i select it for uploading, not only the final name (stored in v). How do i get the entire path of the file? thank you http://www.fyneworks.com/jquery/multiple-file-upload/#tab-Overview

[jQuery] Block UI Don't Send Error Message

2010-01-25 Thread OneSysIns
Hi Guys, I am currently having trouble with IE6 which gives me Don't Send error message. I am currently using IE6, jquery-1.3.2.minified, and Version 2.31 (06-JAN-2010). if you guys can help me with this thanks. my alternate email address is visualmodu...@yahoo.com thanks in advance.

Re: [jQuery] multiple file upload

2010-01-25 Thread sourabh sharma
Actually when we uploading the file at that time we are getting the name of the file as well as tmp name of the file. So as per my knowledge we can only get the name of the file. I am not sure we will get the exact path of the file Thanks Sourabh Sharma www.avideogame.com On Mon, Jan 25, 2010

Re: [jQuery] Block UI Don't Send Error Message

2010-01-25 Thread sourabh sharma
Hi, I think you have to define all the variable which you are using in the script. Please define the variable as var a; var b; Don't use directly variable and also share the code for more cleareance. Thanks Sourabh Sharma www.avideogame.com On Mon, Jan 25, 2010 at 9:12 PM, OneSysIns

[jQuery] (validate)

2010-01-25 Thread jhoin
This is a message to Jörn Zaefferer with respect to his autocomplete plugin: [This question was previously posted on StackOverFlow] I am using the autocomplete functionality from JQuery and am having a small problem. I have a div element with some text and a variable number of input boxes that

Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-25 Thread Nathan Klatt
On Mon, Jan 25, 2010 at 5:19 PM, Bugman1400 trae.be...@coachmanridge.com wrote: I still get the Error $ is not defined in the console. What could that be from? That means jQuery isn't being properly included. Nathan

Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-25 Thread Bugman1400
Thankscan you give a little further guidance as to the proper way to include jQuery? Nathan Klatt-2 wrote: On Mon, Jan 25, 2010 at 5:19 PM, Bugman1400 trae.be...@coachmanridge.com wrote: I still get the Error $ is not defined in the console. What could that be from? That means

Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-25 Thread Bugman1400
Nathan Klatt-2 wrote: On Mon, Jan 25, 2010 at 5:19 PM, Bugman1400 trae.be...@coachmanridge.com wrote: I still get the Error $ is not defined in the console. What could that be from? That means jQuery isn't being properly included. Nathan Nevermind.I just figured it out. I

[jQuery] Re: FastFlip like plugin

2010-01-25 Thread Richard
carousel - so that's what that effect is called. Thanks! I realized there was a new JQuery forum so asked this question again there: http://forum.jquery.com/topic/fast-flip-like-image-gallery It is interesting that I received an answer first in the older supposedly abandoned forum. Richard On

[jQuery] jqDialog

2010-01-25 Thread john6630
I sent this to the new forum but it appears a lot of traffic is still here. So to cover my bases here it is again: I am using the jqDialog quite successfully but have run across a strange situation. In the following script, the button click event shows the dialog ok but the if statement does

[jQuery] Re: tablesorter line numbers

2010-01-25 Thread jay
Is there any way to get the following code to refresh after every sort? The $(#myTable).each(function(){numbers it, and if I replace it with $(#myTable).bind(sortEnd,function(){ it just adds a new numbered row after every sort (three sorts gets you three columns of numbers).