[jQuery] Question: Form focus to prevent fadeOut?

2009-07-10 Thread Brendan
Apologies if this is read by a common moderator between here and jQuery-UI, I was in the wrong tab, haha. Anyway, I'm having a little trouble coming up with a concise way to do this. I've created a div containing a registration form that fades in when the user hovers over a triggering link, and

[jQuery] Does Supersubs work with Superfish menus in vertical mode?

2009-06-26 Thread Brendan
layout vertically, seem to overwrite the widths of the UL's and LI's. Cheers Brendan

[jQuery] Re: scrollTo plugin: prevent tabbing between slides?

2009-06-03 Thread Brendan
Set tabindexes and hope for the best? Other than maybe disabling the tab key altogether i'm not sure if you can. How about disabling the fields until they come into view? On Jun 2, 4:16 pm, Jack Killpatrick j...@ihwy.com wrote: Anyone have any ideas? TIA. - Jack Jack Killpatrick wrote:

[jQuery] Re: Selectively load js files

2009-04-04 Thread Brendan
'); }, dataType: script, cache: true });} // Example Usage $('body').bind('ui-included', function(){     // Triggered when your UI scripts are included }); $.uinclude('draggable', 'resizable', 'tabs'); On Apr 3, 1:36 pm, Brendan bcorco...@gmail.com wrote: Hi, I'm looking at including

[jQuery] Selectively load js files

2009-04-03 Thread Brendan
Hi, I'm looking at including jQuery UI in a project I am working on, but one of my concerns is the large size of the full file. I was wondering if there is something easy or built in that would allow me to load only which jQuery UI plugins/effects I need on a particular page. So, something

[jQuery] Re: is it possible to do this (ignore clicks)

2009-03-20 Thread Brendan
Couldn't you bind an onclick event to whatever links you want to stop and just have them return false; ? On Mar 20, 3:22 am, Steven Yang kenshin...@gmail.com wrote: i believe you can simply do e.stopPropagation()because you get event bubbling for the events inside the div all the events bind

[jQuery] Re: Showing Ajax response when not empty

2009-03-17 Thread Brendan
(...);                }           }      }); }); This assumes that your everyTime function is working. I'm not sure what that is. On Mar 16, 6:39 pm, Brendan bcorco...@gmail.com wrote: I'm not sure where to begin asking for help on this one, so I'll just explain what I'm trying to do. What I want to do is show a notification

[jQuery] Showing Ajax response when not empty

2009-03-16 Thread Brendan
I'm not sure where to begin asking for help on this one, so I'll just explain what I'm trying to do. What I want to do is show a notification on the page when another user logs in. Say I am User A, and User B logs in, I want to see a notification that User B has logged in. Right now I have a

[jQuery] Modifying 3D Image Carousel plugin

2009-01-15 Thread brendan
I've been hacking away at this all afternoon with no luck, and the author's homepage is down I'm using this plugin: http://plugins.jquery.com/project/carousel3d And trying to use both a continuous scroll and also the button controls, and I just can't seem to figure it out. Any ideas?

[jQuery] Re: A better way

2008-11-21 Thread Brendan
Very good to know! Now I know what to look for :) On Nov 20, 6:11 pm, Dave Methvin [EMAIL PROTECTED] wrote: I was looking at the jQuery docs for toggle here  http://docs.jquery.com/Events/toggle The toggle() without any arguments implements show/hide functionality, so it's in the Effects

[jQuery] A better way

2008-11-20 Thread Brendan
I am new to jQuery (coming from Mootools) and the way things are done here are a bit different, but I am willing to put a lot of effort into learning it. That said, I have some working code here (I wrap it in the $ (document).ready function) but I wanted to know if there is a more efficient way

[jQuery] Re: A better way

2008-11-20 Thread Brendan
() {         $(# + $(this).attr('rel')).toggle(); }); It uses the rel attribute of the anchor to find the DIV-Node, and using the toggle method, the div is either hidden or displayed, depending on the current status. cheers lukas Am 21.11.2008 um 00:56 schrieb Brendan: I am new to jQuery (coming from

[jQuery] Some If/Then help

2008-07-11 Thread brendan
Hey all, I'm using Seamus Leahy's AddAClassNameAtRandomToAnElement.js (http:// moronicbajebus.com/2006/07/30/add-a-class-randomly-from-a-set/) to add a random class to a div, and then trying to insert an image based on the random class name. So if I have div id=main class=aa I'd like to say

[jQuery] Re: Some If/Then help

2008-07-11 Thread brendan
On Jul 11, 9:51 am, noon [EMAIL PROTECTED] wrote: Don't understand when this could occur to make any sense for images being inserted like this without an example, but at any rate.. noon, thanks for your help, I'll give it a try. I should have been a little more specific sorry. It's for

[jQuery] Re: Some If/Then help

2008-07-11 Thread brendan
Thanks Richard, I couldn't get yours to work (my js knowledge is pathetically rusty) and ran out of time to tinker with it, I ended up just prepending the image to the div by class after it's randomly added: $(document).ready(function(){ $(#main.nike).prepend('img src=swoosh.jpg alt=nike /');