[jQuery] Re: jQuery Powered Sites - More Sites Added.

2007-04-17 Thread Dylan Verheul
I just noticed a thickbox on www.bartsmit.com (big chain of toy stores in the Netherlands). On 4/10/07, Rey Bango <[EMAIL PROTECTED]> wrote: Added: - GameGum Free Flash Games - ToonGum ToonGum is a flash cartoon community. View, submit, and interact with our many flash cartoons and large co

[jQuery] Re: Question about jQuery + CSS

2007-04-17 Thread howard chen
sorry, a:hover is just an example, what i want is to style pseudo class, such as a:visited, a:active etc Try jQuery("a").mouseover( function() { $(this).css("fontSize", "20px"); } );

[jQuery] Re: Web2.0 Expo

2007-04-17 Thread John Resig
Yep - I'll be there. I'm busy during lunch (and the panel, which is just after lunch). If someone wants to do something in place of the last session/break - let me know! My cell phone # is here: http://ejohn.org/about/ --John On 4/17/07, Erik Beeson <[EMAIL PROTECTED]> wrote: John is on a pa

[jQuery] Re: Erratic behavior of cookie plugin

2007-04-17 Thread Klaus Hartl
joomlafreak schrieb: Hi Klaus Thanks for your prompt reply as always. That was Jake replying so promptly, while I was asleep ;-) So let's thank Jake! -- Klaus

[jQuery] wanna see something pretty

2007-04-17 Thread Ariel Jakobovits
i know its OT, but I look you guys. http://www.wefeelfine.org/

[jQuery] Re: More AJAX and link issues

2007-04-17 Thread Ariel Jakobovits
um, you are passing in .subnav as the root in secondryClickHandler, but are still prefixing your search term with .subnav if you are using root as context, then you don't need ('.subnav a',root) but only ('a',root) - Original Message From: Tane Piper <[EMAIL PROTECTED]> To: jquery-en

[jQuery] Re: Web2.0 Expo

2007-04-17 Thread Erik Beeson
John is on a panel in the morning. And my company, YourSharade, has a booth. Come by and say hi. --Erik YourSharade.com (Booth #521) On 4/17/07, Ariel Jakobovits <[EMAIL PROTECTED]> wrote: Anyone gonna be there tomorrow? meet up?

[jQuery] Web2.0 Expo

2007-04-17 Thread Ariel Jakobovits
Anyone gonna be there tomorrow? meet up?

[jQuery] vars in unnamed functions

2007-04-17 Thread Ariel Jakobovits
this isn't the real code, just a mockup, but ... can someone explain to me why this works (as in, alert echoes 'ariel'): var temp = null; function init () { var aVariable = 'ariel'; var settings = { functionToCallLater: function (content) { alert(a

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-17 Thread Dylan Verheul
On 4/18/07, Dylan Verheul <[EMAIL PROTECTED]> wrote: On 4/17/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > I'm glad to release the first version of the rewritten autocomplete > plugin, based on the work by ... > There is now a page with a download, link to the demo and documentation: > http://

[jQuery] Re: find.click vs bind("click")

2007-04-17 Thread Ariel Jakobovits
be aware that sometimes when a javascript error occurs in front of the return false, it will cause the link to activate. are you using firebug? if so, find the one catch(e) in the jquery.js file that is worth setting a breakpoint at and see if the script stops there. - Original Message -

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-17 Thread Dylan Verheul
On 4/17/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: I'm glad to release the first version of the rewritten autocomplete plugin, based on the work by ... There is now a page with a download, link to the demo and documentation: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ G

[jQuery] Re: Question about jQuery + CSS

2007-04-17 Thread Yansky
Oh wait, disregard my previous attempt. It doesn't remove the css onmouseout. Try this instead: jQuery("a").hover(function(){ $(this).css("fontSize","20px"); },function(){ $(this).css("fontSize", ""); }); On Apr 18, 2:35 pm, "howard chen" <[EMAIL PROTECTED]> wrote: > hody > > 1. How to s

[jQuery] Re: Question about jQuery + CSS

2007-04-17 Thread Yansky
Try jQuery("a").mouseover( function() { $(this).css("fontSize", "20px"); } ); howard chen wrote: > hody > > 1. How to set the css in each() iteration? > > e.g. > > jQuery("a").each(function() { > // change css > > // do the rest > ) > > I don't want to use jQuery("a").css as it as imply

[jQuery] Re: Autocomplete plugin

2007-04-17 Thread Ariel Jakobovits
question: is there paging in the autocomplete program for AJAX based option queries? - Original Message From: "Dan G. Switzer, II" <[EMAIL PROTECTED]> To: jquery-en@googlegroups.com Sent: Tuesday, April 17, 2007 6:55:25 AM Subject: [jQuery] Re: Autocomplete plugin James, >I found the

[jQuery] Re: Erratic behavior of cookie plugin

2007-04-17 Thread joomlafreak
Problem solved by setting the path. thanks a lot joomlafreak On Apr 18, 12:24 am, joomlafreak <[EMAIL PROTECTED]> wrote: > Hi Klaus > Thanks for your prompt reply as always. > > You are correct, I am just using name and value because I am not using > joomlaprodigy.com but onlywww.joomlaprodigy

[jQuery] Question about jQuery + CSS

2007-04-17 Thread howard chen
hody 1. How to set the css in each() iteration? e.g. jQuery("a").each(function() { // change css // do the rest ) I don't want to use jQuery("a").css as it as imply two dom querying doing the same thing 2. How to set the following CSS? a:hover { font-size:20px; } Thanks.

[jQuery] Re: to change tab for enter

2007-04-17 Thread Ariel Jakobovits
that won't work. What if you have: Campo 1: Campo 3: Campo 2: why not: $("[EMAIL PROTECTED]").bind("keydown",function(e){ if (e.keyCode == 13) { tabIndex = parseFloat($(this).attr("tabindex")) + 1; $("[EMAIL PROTECTED]" + tabIndex + "]").focus(); return false;

[jQuery] Re: Will this code enable & disable a submit button?

2007-04-17 Thread Daemach
You would need to create a structure with structNew() (http:// builder.com.com/5100-6387-1049890.html), and add 2 nodes to it. Your boolean result from the validation and the html you're returning now. Then use cfwddx to convert the structure to wddx and return that instead of the html you're ret

[jQuery] Re: Erratic behavior of cookie plugin

2007-04-17 Thread joomlafreak
Hi Klaus Thanks for your prompt reply as always. You are correct, I am just using name and value because I am not using joomlaprodigy.com but only www.joomlaprodigy.com. Even if I stick to this www I am having this erratic behavior. Infact I just realized that this works flawless on my test site

[jQuery] Re: Erratic behavior of cookie plugin

2007-04-17 Thread Ⓙⓐⓚⓔ
I noticed 2 things, you don't set the domain on the cookies and both http://www.joomlaprodigy.com/ and http://joomlaprodigy.com/ work independently, instead of forwarding one to the other. Are you switching back and forth, thereby keeping 2 sets of cookies??? On 4/17/07, joomlafreak <[EMAIL P

[jQuery] Re: jQuery and EXT not working at all

2007-04-17 Thread cdomigan
In the latest releases of Ext, the jquery and dimensions files are already included in ext/adapter/jquery/jquery-plugins.js

[jQuery] Re: Library showdowns

2007-04-17 Thread Rhapidophyllum
There are some situations when you can only pass a variable referring to a function; with a curry function you can pass a variable that refers to a function + arguments. A problem, though, is that some curry functions seem to go a little beyond this basic functionality, behaving differently w

[jQuery] Erratic behavior of cookie plugin

2007-04-17 Thread joomlafreak
I am using Klaus's cookie plugin to vary the width and open or close status of segments on my website. The problem is that it works and it does not work also. It works sometimes and fails sometimes. If it was not working I could have thought of something but now that it works randomly, I have no

[jQuery] Re: jQuery and EXT not working at all

2007-04-17 Thread Joel Birch
On 18/04/2007, at 4:25 AM, Jörn Zaefferer wrote: You really should post this as a tutorial on docs.jquery.com "Getting Started with jQuery and Ext". -- Jörn Zaefferer I agree, that write up will save people hours of head-scratching. Juha, you are a modern-day hero for figuring this out and

[jQuery] Interface: Speed of SortableDestroy()

2007-04-17 Thread cdomigan
Hi there I'm using Sortables on a calendar application. Each day on the month calendar is a "drop" container, and in each day there and between 0 and 12 "draggable" items. I have navigation that clicks me from one month to the next, and in order to keep performance (as the navigation is using aja

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-17 Thread Andy Matthews
Dude... This plugin freaking rocks. It's so far ahead of what it was before. Great job you guys! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris W. Parker Sent: Tuesday, April 17, 2007 5:09 PM To: jquery-en@googlegroups.com Subject: [jQue

[jQuery] Re: How to apply thickbox effect to a loaded ajax content?

2007-04-17 Thread SimDigital
But i'm using into initial document. On 17 abr, 20:37, Olaf Bosch <[EMAIL PROTECTED]> wrote: > SimDigital schrieb: > > > But thickbox effect doesn't work... i'm beeing redirected to > > teste.html and the window doesn't open. > > > How to fix this? > > Have you this: > > > > > > > > ... > >

[jQuery] Re: Altering jQuery (packed) to work in greasemonkey

2007-04-17 Thread Yansky
Thanks a bunch. :) If you have the time, would you also be able to explain what needs to be altered in the packed version so I could alter them myself if I need too? On Apr 18, 10:25 am, "Sean Catchpole" <[EMAIL PROTECTED]> wrote: > Yansky, > > I was going to wait for the next version of jQuery,

[jQuery] Re: Altering jQuery (packed) to work in greasemonkey

2007-04-17 Thread Sean Catchpole
Yansky, I was going to wait for the next version of jQuery, but I'll try to get a working version of jQuery for userscripts again. ~Sean

[jQuery] Altering jQuery (packed) to work in greasemonkey

2007-04-17 Thread Yansky
I really like using jquery & greasemonkey together to make userscripts for sites and so far I've been using the method outlined here to insert jquery into a websites page. http://joanpiedra.com/jquery/greasemonkey/ But I would really like to include the packed version within the greasemonkey user

[jQuery] Re: How to apply thickbox effect to a loaded ajax content?

2007-04-17 Thread Olaf Bosch
SimDigital schrieb: But thickbox effect doesn't work... i'm beeing redirected to teste.html and the window doesn't open. How to fix this? Have you this: ... $("#loadhere").load('http://localhost/test/moreinfo.php?id=1

[jQuery] Re: Multiple .bind

2007-04-17 Thread DaveG
Thanks for the workaround, and the patch! Jesse Skinner wrote: I've just submitted a patch to fix this, but in the meantime you can use an anonymous function (as I just described in another message) like so: function tocDisplay(e){ $('#toc_content')[e.data.mode](); } $('#toc_he

[jQuery] Re: AJAX datagrid (paging & sorting) with jQuery?

2007-04-17 Thread Richard Thomas
http://projects.cyberlot.net/jqpie/examples/paging.html Simple php code behind that page On 4/17/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Juha Suni schrieb: > > Jörn Zaefferer wrote: >> Thanks. >> Christian's tablesorter is pure client-side, that doesn't help much in >> my case. I'm

[jQuery] Loading Thickbox from Ajax Content Link

2007-04-17 Thread SimDigital
Hi. I'm trying to load thickbox from ajax content link, but it isn't working. I have tried to include thickbox.js into Ajax Content Page, but after this the windows loaded twice with the same content and one bellow another. I try to add TB_Init() call to the end of the ajax page, i solve one pro

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-17 Thread Chris W. Parker
On Tuesday, April 17, 2007 3:25 PM Dan G. Switzer, II <> said: > Chris, > >> Comment: When I type and am no longer matching anything in the >> available list the box should disappear. I think. > > It's already known and listed in the "Known Issues" under "mustMatch > option is broken." ;) Then

[jQuery] More AJAX and link issues

2007-04-17 Thread Tane Piper
Hey again folks, Since my last email, I had decided to go with a small change in design. In my application, I have 3 areas: .primary .subnav .content .primary is the top of site navigation. This is for entries such as Home, News, Events, Login/Register. With my code below, what I want it to

[jQuery] Re: Working with accordions - Parent category without Child

2007-04-17 Thread Allan
Okay just figured out a work around using hover instead. http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://www.w3.org/1999/xhtml"; xml:lang="en-us"> Menu http://jquery.com/src/jquery.js";> $(document).ready(function(){

[jQuery] Re: Library showdowns

2007-04-17 Thread Nathan Young -X \(natyoung - Artizen at Cisco\)
Hi. Can you describe a problem whose solution becomes much easier by using currying? ->Nathan From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sean Catchpole Sent: Monday, April 16, 2007 8:17 PM To: jquery-en

[jQuery] Re: Autocomplete plugin

2007-04-17 Thread Dan G. Switzer, II
James, >because I am searching through towns and postcode (zip codes) for Australia >some post codes are as short as 2/3 char so I need to keep it set to 3 but >just return a maxium of 10 results. When you enter the postcode (zipcode) >you would get no more than about 4 results. > >So because of

[jQuery] Re: Autocomplete plugin

2007-04-17 Thread Dan G. Switzer, II
Jörn, >The autocomplete plugin version I've just released (see other thread) >sends the options.max value to the server as a "limit" parameter, you >could add that to your SQL to limit the number of results already on the >server. I wouldn't recommend that though if you're using the caching--it

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-17 Thread Dan G. Switzer, II
Chris, >Comment: When I type and am no longer matching anything in the available >list the box should disappear. I think. It's already known and listed in the "Known Issues" under "mustMatch option is broken." ;) -Dan

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-17 Thread Chris W. Parker
On Tuesday, April 17, 2007 2:04 PM Jörn Zaefferer <> said: > There is now a page with a download, link to the demo and > documentation: > http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ > > The documentation lacks better examples, so until that is improved, > please try out the

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-17 Thread Jeff Fleitz
Nice job! The multiple option is the bomb. One thing that I think would be useful to add (I pinged Dan about this the other day), is an option to restrict the multiple option to distinct values, so that duplicate selections are prevented. Jeff On Apr 17, 5:04 pm, Jörn Zaefferer <[EMAIL PROTECT

[jQuery] Re: New To List - Question about JModal - DNR

2007-04-17 Thread Sean Catchpole
Can you link an example or paste some code? ~Sean

[jQuery] How to apply thickbox effect to a loaded ajax content?

2007-04-17 Thread SimDigital
I need to keeping applying Thickbox effect to a ajax content like bellow: Before click on button to load ajax content: ... $("#loadhere").load('http://localhost/test/moreinfo.php?id=1'); After loaded content, i got it in me

[jQuery] Re: jqModal confirm and alert override

2007-04-17 Thread laurenty
The while loop was the first thing I tried, the problem with it is that it keeps the browser so busy that it does not even respond anymore. The double callback approach did the trick. On Apr 17, 11:04 am, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote: > I would suggest a while loop after you pop

[jQuery] Re: Autocomplete plugin

2007-04-17 Thread Jörn Zaefferer
James Trix schrieb: because I am searching through towns and postcode (zip codes) for Australia some post codes are as short as 2/3 char so I need to keep it set to 3 but just return a maxium of 10 results. When you enter the postcode (zipcode) you would get no more than about 4 results. So

[jQuery] Re: Autocomplete plugin

2007-04-17 Thread James Trix
because I am searching through towns and postcode (zip codes) for Australia some post codes are as short as 2/3 char so I need to keep it set to 3 but just return a maxium of 10 results. When you enter the postcode (zipcode) you would get no more than about 4 results. So because of the large data

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-17 Thread Dan G. Switzer, II
Jörn, >I'm glad to release the first version of the rewritten autocomplete >plugin, based on the work by ... >There is now a page with a download, link to the demo and documentation: >http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ Looking good! Glad to see you got the findValue

[jQuery] Re: Injecting JavaScript and CSS - Optimization Technique

2007-04-17 Thread mdelmarter
Hi Markus, Thanks for taking the time to reply - good to get some feedback. I agree with most of your comments, and once would have felt the same as you did. The reality is that once I started using Ext which added a lot of weight to my JS and CSS, that I found the loading of iframes had a notica

[jQuery] Re: ThickBox question

2007-04-17 Thread Chris Jordan
Okay, I just took a look at thickbox.js and want to know if all I have to do is call TB_show(caption, url, rel); ? I'll play around with this, but would love it if anyone could tell me if they've had this need before and how they solved it. Thanks, Chris On Apr 17, 4:13 pm, Chris Jordan <[EMAIL

[jQuery] Re: New To List - Question about JModal - DNR

2007-04-17 Thread Chris Jordan
Welcome to the list Jimmy. Thanks for the kudos on CJFS. :o) Cheers, Chris On Apr 17, 4:08 pm, "Jimmy Glass" <[EMAIL PROTECTED]> wrote: > Hi. > > I don't know if this is really a support forum, but. > > Has anyone had the problem of not being able to resize a JQModal window > vertically? I am ab

[jQuery] Re: Ext Calendar on top of jQuery

2007-04-17 Thread mdelmarter
Hi Brendon, Thanks for replying - great to see that it is on the todo list. If you need any help with regression testing please let me know... On Apr 18, 5:52 am, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > Moving to addEventListener and attachEvent is on the todo list. When > will it be done?

[jQuery] ThickBox question

2007-04-17 Thread Chris Jordan
Hi folks, I've searched the archives, but didn't find what I was looking for. So if this has already been discussed and someone can point me to the old thread, that'd be awesome. Otherwise: Is it possible to trigger the opening of a thickbox without a link? In other words, I want to do this: if

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-17 Thread Jörn Zaefferer
Jörn Zaefferer schrieb: Hi folks, I'm glad to release the first version of the rewritten autocomplete plugin, based on the work by ... Sorry, wanted to insert a few names there: Dylan Verheul, Dan G. Switzer and Anjesh Tuladhar -- Jörn Zaefferer http://bassistance.de

[jQuery] New To List - Question about JModal - DNR

2007-04-17 Thread Jimmy Glass
Hi. I don't know if this is really a support forum, but. Has anyone had the problem of not being able to resize a JQModal window vertically? I am able to drag and horizontally resize the window, but. it wont' resize vertically. I don't even know where to begin debugging it. Has anyone seen t

[jQuery] Re: Plugin authoring

2007-04-17 Thread Aaron Heimlich
On 4/17/07, Josh Nathanson <[EMAIL PROTECTED]> wrote: 1) I'm not adding any methods, just functions (I think) - the calls would be in the form $.jqURL.myfunc() -- so am I writing a plugin or an extension? In my mind, there really isn't much of a difference (if any) between plugins and extensi

[jQuery] Release: autocomplete 1.0 alpha

2007-04-17 Thread Jörn Zaefferer
Hi folks, I'm glad to release the first version of the rewritten autocomplete plugin, based on the work by ... There is now a page with a download, link to the demo and documentation: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ The documentation lacks better examples, so

[jQuery] Plugin authoring

2007-04-17 Thread Josh Nathanson
Hey all, I've been working on my first jQuery plugin, it's going to be called jqURL. It handles some url parsing tasks and does a few other nifty things. But, I have a couple of questions -- I want to make sure I'm going about things the right way. 1) I'm not adding any methods, just funct

[jQuery] Re: Plugin: CFJS updated

2007-04-17 Thread Gareth Hughes
Lol. Dropping my 'Cor' was just lazy :-) - Original Message - From: "Christopher Jordan" <[EMAIL PROTECTED]> To: Sent: Tuesday, April 17, 2007 9:13 PM Subject: [jQuery] Re: Plugin: CFJS updated My pleasure, Gareth. The only way you could have made the grin on my face bigger was if y

[jQuery] Re: Ext Calendar on top of jQuery

2007-04-17 Thread Brandon Aaron
I hope we can find the time to get it into the 1.1.3 release. It was originally slated for the 1.1.3 but it is all a mater of having time to implement and thoroughly test. -- Brandon Aaron On 4/17/07, Jeffrey Kretz <[EMAIL PROTECTED]> wrote: Do you know if this is intended to be a part of the

[jQuery] Re: Plugin: CFJS updated

2007-04-17 Thread Christopher Jordan
My pleasure, Gareth. The only way you could have made the grin on my face bigger was if you'd said, "Cor Blimey!". :oD Chris Gareth Hughes wrote: Blimey, I didn't know about this... Very cool. Thanks Chris. - Original Message - From: "Christopher Jordan" <[EMAIL PROTECTED]> To: "j

[jQuery] Re: Ext Calendar on top of jQuery

2007-04-17 Thread Jeffrey Kretz
Do you know if this is intended to be a part of the 1.1.3 milestone? JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brandon Aaron Sent: Tuesday, April 17, 2007 10:53 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Ext Calendar on top

[jQuery] Re: Plugin: CFJS updated

2007-04-17 Thread Rey Bango
Great job Chris!!! Christopher Jordan wrote: Hi folks, Just a quick note to say that I've updated the library to fix a bug in the DollarFormat() function. Also, when I get a spare moment or three, I'll be adding heaps more CFScript functions to the library. The SVN on RIAForge (http://c

[jQuery] Re: Plugin: CFJS updated

2007-04-17 Thread Gareth Hughes
Blimey, I didn't know about this... Very cool. Thanks Chris. - Original Message - From: "Christopher Jordan" <[EMAIL PROTECTED]> To: "jQuery Discussion." Sent: Tuesday, April 17, 2007 8:58 PM Subject: [jQuery] Plugin: CFJS updated Hi folks, Just a quick note to say that I've updated

[jQuery] Re: Autocomplete plugin status2

2007-04-17 Thread Jörn Zaefferer
Dan G. Switzer, II schrieb: Jörn, Seems like its enough to bind the keypress event... You may want to do some testing on keypress. I think keydown was used for repeating character purposes. It might be better off to just trap the [enter] key on keypress and leave the other co

[jQuery] Plugin: CFJS updated

2007-04-17 Thread Christopher Jordan
Hi folks, Just a quick note to say that I've updated the library to fix a bug in the DollarFormat() function. Also, when I get a spare moment or three, I'll be adding heaps more CFScript functions to the library. The SVN on RIAForge (http://cfjs.riaforge.com) is probably the best place to

[jQuery] Re: Autocomplete plugin

2007-04-17 Thread Dan G. Switzer, II
>Its a double-boolean-inversion. So if !li.extra return false, !!li.extra >returns true. Unnecessary in that case and removed in the latest revision. I think I got in the habit doing the double conversion because of some issues w/NS4. Sometimes objects would incorrectly evaluate to true, but doin

[jQuery] Re: Autocomplete plugin status2

2007-04-17 Thread Dan G. Switzer, II
Jörn, >Seems like its enough to bind the keypress event... You may want to do some testing on keypress. I think keydown was used for repeating character purposes. It might be better off to just trap the [enter] key on keypress and leave the other code only. I'm pretty sure the keydown ev

[jQuery] Re: Autocomplete plugin status2

2007-04-17 Thread Jörn Zaefferer
Jörn Zaefferer schrieb: Another issue is Opera insisting on submitting the form when pressing enter, even with event.preventDefault() called at the right moment, at least it works in IE and Firefox. Anyone got an idea how that can be avoided? I've never been able to fix that, but it's be

[jQuery] Re: Autocomplete plugin

2007-04-17 Thread Jörn Zaefferer
[EMAIL PROTECTED] schrieb: Well, while you're taking requests I've noticed something odd. When there is a space in the selected item I get weird encoding when I display the value on a results page. For instance, "first_name last_name" appears as !first_name !last_name. This may be something in

[jQuery] Re: [PATCH] jQuery 1.1 star rating fix

2007-04-17 Thread Jörn Zaefferer
Ian Eure schrieb: I ran into some problems with the star rating plugin for jQuery 1.1. The issue is that (at least in Firefox) links with "#foo" get expanded to include the current page URL. The plugin assumes the href attribute is a simple "#5", so the rating isn't extracted correctly. I patch

[jQuery] Re: Autocomplete plugin

2007-04-17 Thread [EMAIL PROTECTED]
Well, while you're taking requests I've noticed something odd. When there is a space in the selected item I get weird encoding when I display the value on a results page. For instance, "first_name last_name" appears as !first_name !last_name. This may be something in my server side script but I t

[jQuery] Working with accordions - Parent category without Child

2007-04-17 Thread Allan
I am very happy with jquery. And I have been playing around with it over the last couple of days. I am a designer with a heavy reliance on IDEs like dreamweaver. So my coding background isn't strong, so please forgive this question if it is too out of place to ask here. I am using this code:

[jQuery] Triggered Event not returning correct target

2007-04-17 Thread Ardie Saeidi
Hi everyone, So i'm working on a default form button script, which is really easy and i was able to get it to work. Problem is i have a div/panel listening to click events and i need to get the default button from the event.target property. Thing is when i trigger the default button's click event

[jQuery] [PATCH] jQuery 1.1 star rating fix

2007-04-17 Thread Ian Eure
I ran into some problems with the star rating plugin for jQuery 1.1. The issue is that (at least in Firefox) links with "#foo" get expanded to include the current page URL. The plugin assumes the href attribute is a simple "#5", so the rating isn't extracted correctly. I patched it to split on #,

[jQuery] Re: jQuery .click Function Help

2007-04-17 Thread Jörn Zaefferer
Brandon schrieb: The jQuery.each works wonders. It's also cleaner IMO. Thanks, Jörn. There are two cases where you'd wan to avoid using each: When you need to reference "this" without creating a closure and when you've got some real performance issues. Apart from that I use it all the tim

[jQuery] Re: jQuery .click Function Help

2007-04-17 Thread Brandon
The jQuery.each works wonders. It's also cleaner IMO. Thanks, Jörn. Brandon On Apr 17, 1:27 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Brandon schrieb:> I am finishing up a small script using the jQuery library, > and I am > > struggling with a onclick function: > > > for (i=0; i >$(

[jQuery] Re: Autocomplete plugin

2007-04-17 Thread Jörn Zaefferer
[EMAIL PROTECTED] schrieb: SQL (SQL to slow) Uhm, wrong? There is hardly an easier approach to dig through large datasets then using a relational database with SQL. Its not the best for every situation, but I don't know of anything as easy and fast as "select someColumn from someTable wher

[jQuery] Re: Injecting JavaScript and CSS - Optimization Technique

2007-04-17 Thread Jörn Zaefferer
mdelmarter schrieb: I thought people on this list may like to read about the techniques available, especially if they are using Ext like I am. I would also like to get some perspective on the "injection" concept by seeing what other developers think of it... Thanks for posting, gonna take a

[jQuery] Re: find.click vs bind("click")

2007-04-17 Thread Shelane Enos
Unfortunately this is an internal application. The jQuery code on the page is just this (I have the one function commented out b/c I couldn't get that to work): var $j = jQuery.noConflict(); function setStatus(statname, statID, stattitle){ if (statID != '') var method = 'remove';

[jQuery] Re: jQuery .click Function Help

2007-04-17 Thread Jörn Zaefferer
Brandon schrieb: I am finishing up a small script using the jQuery library, and I am struggling with a onclick function: for (i=0; i Oh, or just use jQuery.each: jQuery.each(elements, function(i, value) { $('#'+settings.instancename+'-nav-'+String(i+1)).click(function() {

[jQuery] Re: jQuery .click Function Help

2007-04-17 Thread Jörn Zaefferer
Brandon schrieb: I am finishing up a small script using the jQuery library, and I am struggling with a onclick function: for (i=0; i I think the easiest approach is to copy the value: for (i=0; ihttp://bassistance.de

[jQuery] Re: jqModal confirm and alert override

2007-04-17 Thread Laurent Yaish
Brice, Since I needed to check if the user clicked 'no', I overloaded confirm with confirm(msg, yes_callback, no_callback) instead of just having a callback for 'yes' It's not pretty but it works... Thanks! Laurent On 4/17/07, Brice Burgess <[EMAIL PROTECTED]> wrote: laurenty wrote: > is th

[jQuery] Re: Injecting JavaScript and CSS - Optimization Technique

2007-04-17 Thread Markus Peter
On 17.04.2007, at 19:21, mdelmarter wrote: Hi all, I have been using Ext and jQuery for a few weeks now. One issue with this combination is the sheer volume of JavaScript and CSS that needs to be used. Because I am working with a large application I have been experiementing with different tec

[jQuery] Re: Question about BlockUI Plugin.

2007-04-17 Thread Mike Alsup
You can try. The selector you'd want to use would be: div.blockMsg { /* your styles here */ } You may also want to do this to suppress the default styling: $.blockUI.defaults.pageMessageCSS = {}; I haven't tried this myself so I'm not sure how well it will work. Mike On 4/17/07, oscar esp

[jQuery] Re: jQuery and EXT not working at all

2007-04-17 Thread Jörn Zaefferer
Juha Suni schrieb: Brandon Aaron wrote: I would just post your findings here. That way we can all trouble shoot and learn. :) Ok here goes. Actually once I included the dimensions-plugin things started to click really well. Here's a really quick'n'dirty how-to for others who want to jumps

[jQuery] Re: Autocomplete plugin status2

2007-04-17 Thread Jörn Zaefferer
Dan G. Switzer, II schrieb: Another issue is Opera insisting on submitting the form when pressing enter, even with event.preventDefault() called at the right moment, at least it works in IE and Firefox. Anyone got an idea how that can be avoided? I've never been able to fix that, but it'

[jQuery] Re: Autocomplete plugin status2

2007-04-17 Thread Jörn Zaefferer
Sean O schrieb: I could see my users typing in the comma in a multiple select scenario, so I cast my vote for comma-as-selector. Okay, gonna investigate it after a first release. Should be too hard to get the keycode for a dynamic character. -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: AJAX datagrid (paging & sorting) with jQuery?

2007-04-17 Thread Jörn Zaefferer
Juha Suni schrieb: Jörn Zaefferer wrote: Thanks. Christian's tablesorter is pure client-side, that doesn't help much in my case. I'm gonna take a deeper look at Ext. If you get the grid working please post a demo. I've ran into great difficulties in starting up with jQuery-ext (Just posted

[jQuery] Re: Remembering settings

2007-04-17 Thread Benjamin Sterling
Piggie backing off of what Rafael said, you can take the params for each thing and put that in a cookie and when you do you $(document).ready, have a function that looks at the cookie and gets the params. Say you have a menu that the user wants hidden: menuParams:hidden; and when you come in to

[jQuery] Re: Autocomplete plugin

2007-04-17 Thread [EMAIL PROTECTED]
James, The secret there would be to set a minChars value to 5. There's no sense in guessing towns on the first number of a zip code. Autocomplete should make things faster for the user, but trying to guess towns from a severely incomplete zip code isn't doing them any favors. You don't want to

[jQuery] Re: jqModal confirm and alert override

2007-04-17 Thread Benjamin Sterling
I would suggest a while loop after you pop the jqModal, maybe something like: var confirm = false; // a global var ? in the function: // code to execute jqModal confirm box while(!confirm){} ideally the while loop will keep the rest of the code from executing till it gets a confirm that is tr

[jQuery] Re: find.click vs bind("click")

2007-04-17 Thread John Resig
Do you have an example with a full page, there's probably another issue here. --John On 4/17/07, Shelane Enos <[EMAIL PROTECTED]> wrote: I changed to this: function loadEdit(){ var linkval = $j('#edit').attr("href"); $j('#jobinfo').load(linkval); return false; } And added the fun

[jQuery] Re: Remembering settings

2007-04-17 Thread Rafael Santos
Well, you could use $.cookie to set these settings when a user toggle a box and $.cookie to get these ones. http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/ 2007/4/17, Trekmp <[EMAIL PROTECTED]>: Just discovered this library and its excellent and seems to be doing what I need at t

[jQuery] Re: Ext Calendar on top of jQuery

2007-04-17 Thread Brandon Aaron
Moving to addEventListener and attachEvent is on the todo list. When will it be done? Soon :) It will involve a lot of regression testing to make sure we don't cause any problems in the transition. -- Brandon Aaron On 4/17/07, mdelmarter <[EMAIL PROTECTED]> wrote: Hi John and all, I am usin

[jQuery] Re: find.click vs bind("click")

2007-04-17 Thread Shelane Enos
I changed to this: function loadEdit(){ var linkval = $j('#edit').attr("href"); $j('#jobinfo').load(linkval); return false; } And added the function itself to my link. onclick=loadEdit(); The return false in the function isn't working. If I put it in the onclick (onclick=loadEdit();

[jQuery] Re: Library showdowns

2007-04-17 Thread Rhapidophyllum
Dojo has a curry function. On Apr 17, 2007, at 8:30 AM, Klaus Hartl wrote: Glen Lipka schrieb: On 4/16/07, *Sean Catchpole* <[EMAIL PROTECTED] > wrote: Interesting find Karl, Thanks I'm still trying to see if I can find a graceful way to implement curr

[jQuery] Re: hasClass

2007-04-17 Thread Geoffrey Knutzen
That does it. I had never looked at the is method before Thanks a bunch -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brandon Aaron Sent: Tuesday, April 17, 2007 10:26 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: hasClass This tr

  1   2   >