[jQuery] More Superfish menu examples

2007-06-09 Thread Joel Birch
Hi friends, I just created some more demonstrations of using Superfish to enhance different types of menus. The new examples are linked to from my original demo page, under the heading "Other menu examples". Here is the URL with a hash appended to take you straight to the new links: http

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-09 Thread Ⓙⓐⓚⓔ
http://dev.jquery.com/ticket/1289 On 6/9/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: Be sure to add this to trac. -- Brandon Aaron On 6/9/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: > > I also added to the patch renaming the parameter 'xml' and sometimes 'r' > to 'xhr'. I think it makes it easier to

[jQuery] Autocomplete on blur

2007-06-09 Thread Sebastián V . Würtz
i want to lookup a city and autocomplete one string with "city, state, country", but i need make when no result and the user put something unknow like "city, state, country" the object autocomplete call a function that fill the hiddens fields splited (,). Heres an aproach function findValue(li

[jQuery] Re: dynamic jdMenu help

2007-06-09 Thread Chris Jordan
Jonathan, I've solved my problem. I didn't have the latest versions of everything as I thought I did. Thanks for the tip on using $ (".jd_menu").jdMenu(); for my dynamic purposes. Thanks! Chris On Jun 9, 12:42 pm, Chris Jordan <[EMAIL PROTECTED]> wrote: > Hey, I've just simplified my html eve

[jQuery] Plugin to copy rows between tables?

2007-06-09 Thread Brad Perkins
I'm working on a web form where a user can submit queries via ajax. The results are returned in a table. What I need to do is allow the user to select a row from the result table via a double-click (or check box) and have the clicked row inserted into a second table. The second table is in a separ

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-09 Thread Brandon Aaron
Be sure to add this to trac. -- Brandon Aaron On 6/9/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: I also added to the patch renaming the parameter 'xml' and sometimes 'r' to 'xhr'. I think it makes it easier to read. http://jqueryjs.googlecode.com/svn/branches/jake-dev/src/ajax/ajax.js On 6/7/07, Mik

[jQuery] Re: The CSS behind overlays

2007-06-09 Thread Su
Looking at the dimScreen plugin would probably be more focused. On 6/9/07, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote: i suggest you take a look at the css file included with thickbox :

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-09 Thread Ⓙⓐⓚⓔ
I also added to the patch renaming the parameter 'xml' and sometimes 'r' to 'xhr'. I think it makes it easier to read. http://jqueryjs.googlecode.com/svn/branches/jake-dev/src/ajax/ajax.js On 6/7/07, Mike Alsup <[EMAIL PROTECTED]> wrote: I like this patch. Jörn? Brandon? John? Anyone? > a

[jQuery] Re: ParseJSON from array php to array javascript

2007-06-09 Thread cheridav
Hi Emil thanks for your message, i was getting crazy last 2 days, i was using file json.js that i renamed to jsonjscript.js from www.json.org , cos i have json.js from jquery.com. I getting erros cos they are not compatible. I just needed to use json.js from jquery. and the right syntaxis: $.p

[jQuery] Re: can not get simple selector work in IE

2007-06-09 Thread Guoliang Cao
Thanks a lot. I didn't know $("name") means looking for element by tag name. Guoliang On Jun 9, 1:22 pm, "Matt Stith" <[EMAIL PROTECTED]> wrote: > When you select using something like $("stuff"), jquery looks for a > tag, which oviously doesnt exist. To search by class, you use $(".stuff"), > a

[jQuery] unsubscribe

2007-06-09 Thread John C. Bland II
-- John C. Bland II Chief Geek Katapult Media, Inc. - www.katapultmedia.com --- Biz Blog - http://blogs.katapultmedia.com/jb2 Personal Blog - http://blog.blandfamilyonline.com http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoands

[jQuery] Re: The CSS behind overlays

2007-06-09 Thread Alexandre Plennevaux
i suggest you take a look at the css file included with thickbox : /* */ /* -->>> global settings needed for thickbox <<<-

[jQuery] Re: dynamic jdMenu help

2007-06-09 Thread Chris Jordan
Hey, I've just simplified my html even more: jdMenu test File New #dblarrow# Title Loan Evaluation Worksheet Repo Decisio

[jQuery] Re: dynamic jdMenu help

2007-06-09 Thread Chris Jordan
Jonathan, Sorry it's taken me so long to follow up on the advice you've given me. I still seem to be having a bit of trouble. I'm using: jquery.js 1.1.2 jquery.dimensions.js (version not listed in source) jquery.jdMenu.js 1.3.beta2 (2007-03-06) Here's my entire example page: @import url("CSS/jd

[jQuery] Re: can not get simple selector work in IE

2007-06-09 Thread Matt Stith
When you select using something like $("stuff"), jquery looks for a tag, which oviously doesnt exist. To search by class, you use $(".stuff"), and to search by ID you use $("#stuff"). In your case, you wanted to search for a select by name, so you would do $("[EMAIL PROTECTED]'stuff']") Or, lik

[jQuery] Re: can not get simple selector work in IE

2007-06-09 Thread Guoliang Cao
Thank you for your help. But your code doesn't work here. I changed to use id and suddenly everything worked. Here is the new code Test Page function openGame(){ var option = $("#games [EMAIL PROTECTED]"); alert(option.text()); } Select one: games/test1.sgf

[jQuery] The CSS behind overlays

2007-06-09 Thread Arne-Kolja Bachstein
Hi there, I hope there's someone out there who can help me with this little issue. I have to create an overlay that is _not_ called using JS, but can be clicked away using JS. The JS thing now isn't a problem, I simple hide it on click using jQuery, since I already use jQuery at an other part o

[jQuery] Re: can not get simple selector work in IE

2007-06-09 Thread Matt Stith
You might wanna have a look at the Selectors tutorial, http://docs.jquery.com/DOM/Traversing/Selectors Also this might help a bit: http://docs.jquery.com/How_jQuery_Works On 6/9/07, Guoliang Cao <[EMAIL PROTECTED]> wrote: Hi, I have below test html file and can not get it to display the sel

[jQuery] Re: ParseJSON from array php to array javascript

2007-06-09 Thread Emil Ivanov
A little correction: > Then in javascript: > var jsArray = $.getJSON('/test.php'); Has to be Then in javascript: $.getJSON('/test.php', function (jsArray) { }); On Jun 9, 7:32 pm, Emil Ivanov <[EMAIL PROTECTED]> wrote: > Once you encode the array to JSON in php you just have to pass it to > the

[jQuery] Re: ParseJSON from array php to array javascript

2007-06-09 Thread Emil Ivanov
Once you encode the array to JSON in php you just have to pass it to the javascript, not decode it: // test.php $aCambios = mysql_fetch_all ($resultCamb ) ; $myjson = $json->encode($aCambios); // echo "

[jQuery] Re: can not get simple selector work in IE

2007-06-09 Thread Mike Alsup
Try this: function openGame(){ var option = $("#games option:selected"); alert(option.text()); } $(function() { openGame(); $("#games").bind('change',openGame); }); Select one: games/test1.sgf games/test2.sgf games/test4.sgf On 6/9/07, Guoliang Cao <[EMAIL PROTECTED]>

[jQuery] ParseJSON from array php to array javascript

2007-06-09 Thread cheridav
Hi i'm using Mark pluging json.js but i get error when i use ParseJSON, may i'm not writting right the syntaxis. I get in a array all the arrows from a table, then i convert to json (using json.php) , and tI ry to convert to an array in javascript. $aCambios = mysql_fetch_all ($resultC

[jQuery] can not get simple selector work in IE

2007-06-09 Thread Guoliang Cao
Hi, I have below test html file and can not get it to display the selected value. Can someone please let me know what I missed? Thank you. Guoliang I'm using jquery 1.1.2 and IE 6 SP2 (6.0.2900.2180) Test Page function openGame(){ var option = $("games [EMAIL PROTECTED]");

[jQuery] Re: Please help! Why is this not working on IE6?

2007-06-09 Thread Jose Manuel Zea
I´m still trying to fix this. Something new I discovered: If I load the image directly in the browser, writing the URL in the address bar and after this, I reload the problem page and click on the thumbnail of the image I loaded, it works. It seems that when the image is in the cache, there is

[jQuery] Re: Please help! Why is this not working on IE6?

2007-06-09 Thread Jose Manuel Zea
I still trying to fix this. It seems it´s a problem in IE6 when the image it is the first time the image is going to be loaded; because if I load the image directly in the browser, typing the URL in the address bar, and after this I go to the thumbnail gallery and click on the thumb related to th

[jQuery] Re: Greasemonkey + jquery + functions

2007-06-09 Thread emerson999
Thanks all! The additions jostylr made to karl's work did the trick. Just started the actual work in porting over my jquery using scripts, and so far so good.

[jQuery] Re: Use a link to submit a form w/ the form plug-in

2007-06-09 Thread Mike Alsup
Ken, You can call ajaxSubmit from the anchor's click handler, but in general this is not a good way to submit forms because it won't work when JavaScript is disabled. It makes more sense to use a button element and then style it using CSS so that it looks like a text link if that's what your UI

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-09 Thread yorsal (from China; love freedom and love jquery)
nice and why you like purple? hihi~ r u a girl or a boy?