[jQuery] Re: Is there a more efficient Method.

2009-09-01 Thread Kenneth Farmer
That might work. You could bind each child div with a custom event that would have it update itself from the passed in data. Then you could just trigger the event for that parent element. It would be interesting to see if it's faster since it doesn't have to search for the child selectors each tim

[jQuery] problem on fadeIn with flash

2009-05-16 Thread Kenneth Ma
I've tried to use fade in for a div that contain a flash. But there is a split second right before it fadein, it has a sparkling white piece at there. (see kenportfolio.com) Does anyone know how to fix that issue, or even fixable? Remind you to use Konami code to see the fadeIn effect. Code: $(

[jQuery] Re: Trying to grasp basics of scrolling a TBODY

2008-11-05 Thread Kenneth Downs
R, otherwise I would scroll to the top of it and it would still be invisible :) JK *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Kenneth Downs *Sent:* Sunday, November 02, 2008 3:58 PM *To:* jquery-en@googlegroups.com *Subject:* [jQuery] Re: Trying to

[jQuery] watch window problems and ideas

2008-11-04 Thread Kenneth Haynie
I'm a newbie, using VS and firebug debuggers as I learn jQuery. I find it very helpful to pause at various breakpoints and experiment with jQuery chains to see what works. But I find that the results aren't always consistent. Especially in IE. Examples: $('li') result is empty jQuery $

[jQuery] Re: Trying to grasp basics of scrolling a TBODY

2008-11-02 Thread Kenneth Downs
elements and get where I need to go using a TABLE, if only I could connect the dots on the scrolling stuff. I'm not sure what browsers you're targeting, but if IE6 was one you were having problems with, this is why. -Dan -- Kenneth Downs Secure Data Software, Inc. www.secdat.comwww.andromeda-project.org 631-689-7200 Fax: 631-689-0527 cell: 631-379-0010

[jQuery] Re: jqMock - mock library for jqUnit / QUnit

2008-09-07 Thread Kenneth Ko
brary for jqUnit / QUnit Hey Kenneth, On 20-Aug-08, at 5:54 AM, fuzziman wrote: > I've recently released a mock library for the jqUnit framework. > > It is intended to be a lightweight javascript Mock Framework, and > allows dependent functions such as native alert dialogs to b

[jQuery] Re: Firefox 3 beta

2008-02-08 Thread kenneth
ah great, that is quite good news, we will try the new release of jquery 1.2.3 wednesday, i ll keep you posted. Thx for the quick response. Kenneth On 7 feb, 18:23, "John Resig" <[EMAIL PROTECTED]> wrote: > Are you .load()ing HTML with a JavaScript snippet in it? If so, the

[jQuery] Firefox 3 beta

2008-02-07 Thread kenneth
Hello everybody I recently installed the new beta version of firefox 3 I thought it would accept everything we are now designing on a new website but unfortunatly it doesn't accept all jquery code. for example: .load of a specific php file in an other div doesn't seem to work anymore. This is qu

[jQuery] Re: Another IE Sliding bug, the weirdest (some elements disappear and others not on SlideDown)

2008-01-31 Thread Kenneth Bice
Just a wild guess, try sticking content that disappears into its own div inside the toggle div. i only took a quick minute to look but that might do it On 1/27/08, Arkilus <[EMAIL PROTECTED]> wrote: > > > While building my application with jQuery I found out this really > weird internet explorer

[jQuery] Re: Manipulate Element After Being Added to DOM

2008-01-21 Thread Kenneth Ko
>From what you described, you are adding the element after you have bound an event. So your code is really doing: 1. bind function to click event of some element 2. add some element to the dom you can clearly see the event wont get attached to the element. you'll either have to call the code ag

[jQuery] Re: Accessing dynamically created divs

2007-10-14 Thread Kenneth
On 10/11/07, Yasmary Mora <[EMAIL PROTECTED]> wrote: > > > Hello! > > Got a question that I havn't been able to answer. This is my last resort. > :) > > So, I have a list of dynamically created divs, with a link next to > them to show or hide text inside of it. I know how to do it when its > only a

[jQuery] Re: [OT] A Good Cause: AIR (Accessibility Internet Rally)

2007-08-18 Thread Kenneth
hould consider a new acronym for your group. Adobe just release a > piece of software called AIR (Adobe Integrated Runtime) and they're > putting lots of marketing dollars towards it. > > -- > *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTE

[jQuery] [OT] A Good Cause: AIR (Accessibility Internet Rally)

2007-08-16 Thread Kenneth
I am reposting this from March, as this year's events are coming up really soon. Please read! :) I know many of you here share my desire to produce accessible websites, so what more can we do though, besides that which we practice in our current roles? Well, for those of you who would like to put

[jQuery] Re: Solving the Back button problem

2007-07-18 Thread Kenneth
On 7/18/07, S. Robert James <[EMAIL PROTECTED]> wrote: Solving the Back button problem Is there a way to use JavaScript to detect whether a page is being loaded for the first time (from the server), or because someone hit the Back button? Often you want to display a status message only one, b

[jQuery] Re: Integrating Google Internal Site Search using jquery

2007-06-27 Thread Kenneth
On 6/27/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: Hi, I don't really see the point of making this a jQuery plugin, it's very straightforward as is. Now perhaps if the searches where returned via ajax then that's a different story. ~Sean Actually you may not even need jQ for such: ht

[jQuery] Re: Javascript: OOP help, accessing parent objects

2007-06-25 Thread Kenneth
On 6/25/07, Christof Donat <[EMAIL PROTECTED]> wrote: Hi, > C++ > > ... > (new Container()).containedObj.method1(); > //How could method1 ever access varA? > OOps, this shopuld of course read (new Container())->containedObj.method1(); Christof I don't post much, but I must say

[jQuery] Re: Adding AJAX(?) functionality to existing site... do I make new server files?

2007-06-12 Thread Kenneth
On 6/12/07, Chris W. Parker <[EMAIL PROTECTED]> wrote: Hello, What's the standard method for fitting an existing site with AJAX functionality? Currently all my server side files that process requests, like deleting rows from a database (e.g. customers, products, etc.), automatically redirect

[jQuery] Re: grabbing all href attribute values on the page - how?

2007-05-11 Thread Kenneth
It looks like you've already worked this out, but another method to do this would be to use the document.links object. It would go something like this: $(document.links).filter(function() { return this.indexOf('http://') == 0; }).addClass('external') On 5/10/07, stef <[EMAIL PROTECTED]> wrote:

[jQuery] Re: OT: Suppress Apache Authentication

2007-05-02 Thread Kenneth
Is this an internet or intranet application? As for a 'creative' solution, you could possibly try having your server act as a proxy to fetch the data (and then serve it to the user). Most server-scripting languages allow for making HTTP requests as well as handling assorted headers, however, I ha

[jQuery] Re: hover with unordered list

2007-04-29 Thread Kenneth
You probably need to wrap your code in $(function(){/* code */}): $(function(){ $("#categories li").hover(function(){ alert("the mouse is over"); },function(){ alert("the mouse is out"); }); }); The code you posted immediately attempts to bind th

[jQuery] Re: manipulate div inside iframe

2007-04-29 Thread Kenneth
If your jQuery is outside the iframe, you could do: jQuery('iframe').hide(); Inside, not sure.. On 4/29/07, amircx <[EMAIL PROTECTED]> wrote: hey i got a script that seats inside iframe how its is possible to get the id of the iframe and then hide it ? till now i have a script that knows

[jQuery] Re: Is it possible to chain this?

2007-04-29 Thread Kenneth
One way would be to extract the click function out: function doClick() { var getLink = $(this).prev().prev().attr("href"); return getLink.slice(getLink.indexOf("r=")+2, getLink.indexOf("&tp")); } Then: $('#greyLink').click(doClick); I believe that should work. On 4/29/07, Yansky <[EMA

[jQuery] jQuery Tetris?!?

2007-04-28 Thread Kenneth
Not sure if the author is on this list, but awesome job either way! Check it out: http://fmarcia.info/jquery/tetris/tetris.html And vote it up if you think its good -- how could you not ;) @DZone: http://www.dzone.com/rsslinks/tetris_with_jquery.html @Digg: http://digg.com/programming/Game_Tetri

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

2007-04-18 Thread Kenneth
I am not sure if this qualifies for the list, and I was unable to find any further details as to exactly how its implemented (short on time right now), however this could be kind of a big deal: http://mail.zope.org/pipermail/checkins/2007-January/006048.html On 4/18/07, Rey Bango <[EMAIL PROTECT

[jQuery] Re: Spam on this list

2007-04-18 Thread Kenneth
I'm subscribed via GMail and I still get spam on the list. I'm not sure what the magnitude of the problem is for you guys, but its around 1-2 per day (from what I can tell). Google provides several options for the groups though that could help alleviate the problem, if it is to the point of detri

[jQuery] Re: vars in unnamed functions

2007-04-18 Thread Kenneth
I just read the Wikipedia article on closures[1] today and learned quite a bit myself (which isn't saying much!). I would recommend it to anyone wanting to learn more about it. To quote a portion: "[...] a closure is a semantic concept referring to a function paired with an environment [...] Typi

[jQuery] Re: How can I code this func fully jQuery compatible

2007-04-10 Thread Kenneth
I am not sure I understand fully, but maybe this will help? function showReplyBox(itemId,parentId) { var box = $('#comment-reply-box'); var itemBox = $('#comment-item-'+itemId); var parent_id = $('#parent_id'); parent_id.val(parentId ? parentId : itemId);

[jQuery] Re: UNfocus() ?

2007-04-06 Thread Kenneth
On 4/6/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: I was only suggesting a small simplification of your code. Ok, I gotcha now. Thanks Jörn!

[jQuery] Re: UNfocus() ?

2007-04-06 Thread Kenneth
On 4/6/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Kenneth schrieb: > Excuse me while I talk to myselfit looks like I could just use > .blur(fn)nothing to see here, move along ;) You don't even need that each call, focus does that for you. -- Jörn Zaefferer http

[jQuery] Re: Quick question about the ".each()" function

2007-04-06 Thread Kenneth
Your initial code block: $('.wordbreakfield').each(function(){ $(this).text(); }); ...doesn't do anything with the text(). You retrieve it but it's not used. On 4/6/07, Yansky <[EMAIL PROTECTED]> wrote: Hi, thanks for the reply. I'm still a bit confused though. :) If "$('.wordbreakfield

[jQuery] Re: UNfocus() ?

2007-04-05 Thread Kenneth
On 4/5/07, Kenneth <[EMAIL PROTECTED]> wrote: I am trying to emulate the :focus selector for IE, and I have succeeded in the initial aspect of that with the following: $inputs.each(function(){ $(this).focus(function(){ $(this).addClass(

[jQuery] UNfocus() ?

2007-04-05 Thread Kenneth
I am trying to emulate the :focus selector for IE, and I have succeeded in the initial aspect of that with the following: $inputs.each(function(){ $(this).focus(function(){ $(this).addClass('focus'); }); }); However, once the focus leaves the field, the

[jQuery] Re: google group question

2007-04-05 Thread Kenneth
The only problem is, if you subscribe under a 3rd party email address (non-gmail), the web UI for the list will be read-only. The only way around this I've found is to log out of Google and then log back in with the 3rd party address.which makes the whole fancy web UI pretty much worthless. O

[jQuery] Re: Moving to Google Groups (Finally)

2007-04-04 Thread Kenneth
I've been trying to figure this out too, and after about an hour of poking around the Google Groups Help group ( http://groups.google.com/group/Google-Groups-Guide), I don't think its possible...that, or I'm an idiot (which has been proven before). You can correspond with the list via email withou

[jQuery] Re: Help to improve code

2007-04-04 Thread Kenneth
I like that alot! I just have a question though- is it supposed to reload the page on 'disable'? ...or is disable not really implemented (since you probably will only apply it)? On 4/1/07, Joan Piedra <[EMAIL PROTECTED]> wrote: Hey guys, I've wrote a plugin basically it adds some html wrappers

[jQuery] Re: low hanging newbie fruit for you to snack on

2007-04-03 Thread Kenneth
Maybe I can help until someone who actually knows what they're talking about replies :) On 4/3/07, stylo~ < [EMAIL PROTECTED]> wrote: I've rewritten my site scripts with jquery and eliminated a bulky menu script, 2 different image viewers, ajax/rpc script I did years ago, and a bunch of other

[jQuery] Re: Web 2.0 is vulnerable to attack

2007-04-03 Thread Kenneth
I don't doubt that someone put alot of time into this particular FUD piece, but once again (just like all the other articles on this subject), no proof is given. If it's so easy, have it read an arbitrary email from my GMail and THEN I will take the arguments seriously. In the mean time, I laugh

[jQuery] Re: jQuery Powered Sites - Keep the Links Coming

2007-04-03 Thread Kenneth
I just found this one, which is the focus of an article I found through DZone : http://www.ctoads.com/ The article (although it doesn't mention jQuery): http://laurat.blogs.com/random_ramblings/2007/03/it_had_to_happe.html On 3/31/07, bingo <[EMAIL PROTECTED]> wrote: hi, I am using jquery

[jQuery] Re: NEWS: Another Top Site Goes to jQuery

2007-04-02 Thread Kenneth
Cool, I've been reading DZone for awhile now. Thanks for the heads-up Rey. On 4/2/07, Rey Bango <[EMAIL PROTECTED]> wrote: Dzone.com, one of the top tech news aggregators, has recently redesigned their whole site. The big news is that they've chosen to incorporate jQuery for this redesign! I'm

[jQuery] Re: Moving to Google Groups (Finally)

2007-03-31 Thread Kenneth
Just a test, please ignore. On 3/31/07, John Resig <[EMAIL PROTECTED]> wrote: Trans - I think you can just remove it. The new list (jquery-en) has the entire message history in it, so that will make things easier for everyone. If you want, you can email me the user list (jeresig at gmail.com