[jQuery] Help with drop down menus

2006-12-14 Thread blemming
I'm trying to create a few drop down option menus that are contained in divs which are initially not displayed. There each have a image dropdown image with class = div_color. Here is how I am opening the boxes and closing any others that were left open. $(.box_color).click(function ()

Re: [jQuery] Help with drop down menus

2006-12-14 Thread blemming
;-) -- Marc Marc Jansen schrieb: Hi David, maybe this works: $('body').not(.div_color).click(function(){ $(.div_color).hide(); }) untested. -- Marc blemming schrieb: I'm trying to create a few drop down option menus that are contained in divs which are initially

Re: [jQuery] Help with drop down menus

2006-12-14 Thread blemming
I put an example of what I am trying to do here: http://www.brilliantretail.com/cases/colors/ Example basically, I the box to appear when the image with the down arrow is clicked and disappear if the user clicks anywhere else on the screen. Thanks, David blemming wrote: I'm trying

[jQuery] CSS Selector help

2006-12-15 Thread blemming
I have a few divs on a page that are ABSOUTELY positioned inside a TD tag table tr td div class=color_view style=position:absolute;color view/div img src=.. div style=position:absolute;display:hidden;Color Options/div/td /tr /table When the user clicks the img the second hidden div is

Re: [jQuery] Help with drop down menus

2006-12-15 Thread blemming
Thought I'd post that I ended up solving my issue by utilizing the hover() function and just hiding the menu on mouseout. blemming wrote: I'm trying to create a few drop down option menus that are contained in divs which are initially not displayed. There each have a image dropdown image

Re: [jQuery] I need syntax help, please.

2006-12-15 Thread blemming
try, $(a#newWindow).click(... David Christopher Jordan-2 wrote: This should be a quick one. I know there's a way to do this, but it escapes me at this time. I've got a few tags on my screen, and I want some of them to open in the same window and some to open in a pop up, sized

Re: [jQuery] Interface status?

2006-12-16 Thread blemming
I'm curious about this as well. We are getting ready to do a major re-write an internal application and I had originally decided to go with the prototype/scriptaculous framework. After researching jQuery I think I would rather go this route but I am concerned about the maintenance of interface.

Re: [jQuery] Interface status?

2006-12-16 Thread blemming
in specifically? -Paul 2006/12/16, blemming [EMAIL PROTECTED]: I'm curious about this as well. We are getting ready to do a major re-write an internal application and I had originally decided to go with the prototype/scriptaculous framework. After researching jQuery I think I would rather go

Re: [jQuery] Interface status?

2006-12-17 Thread blemming
are you concerned in specifically? -Paul 2006/12/16, blemming [EMAIL PROTECTED]: I'm curious about this as well. We are getting ready to do a major re-write an internal application and I had originally decided to go with the prototype/scriptaculous framework. After researching

[jQuery] Help with arrow key navigation

2006-12-19 Thread blemming
hello all, definately need to start this post off with the I'm a jquery newbie statement. I'm trying to put together a quick search function that alllows for keyboard navigation. Here is an example: http://brilliantretail.com/cases/filter/qs.php Search Example (Try searching for

Re: [jQuery] Insist: Extrange problem with .click()

2006-12-19 Thread blemming
you are missing a ' after the remlink class name, and I think you want to change your select statements to this format: $(#ShowLinks .taglink).click( function () RoadRat wrote: Ok, lets forget the id question. The problem persist: div id='ShowLinks' -- One row: div id='450' a

[jQuery] Help With Sortables

2006-12-28 Thread blemming
A little help please I have a sortable in and I want to be able to replace the content and then reload the sortable. It works fine using FireFox but IE allows for the item to be dragged but the sorting doesn't work. An example is here: http://brilliantretail.com/cases/sorttest/ Sort Test

Re: [jQuery] Help With Sortabe Reload in IE

2006-12-28 Thread blemming
anything... Im really stuck and its messing up my day :( -- View this message in context: http://www.nabble.com/Help-With-Sortabe-Reload-in-IE-tf2892329.html#a8081358 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list

[jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread blemming
Here is my first attempt at a plug-in. It is definitely in the early stage of development, but I thought I'd put it out here for you guys to rip apart (and hopefully provide a suggestions or two) Here it is = http://brilliantretail.com/cases/select/ Custom Select Plugin Let me know what you

Re: [jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread blemming
well, I guess my plugin must not be that goodmy post got warpped into a completely different topic :( blemming wrote: Here is my first attempt at a plug-in. It is definitely in the early stage of development, but I thought I'd put it out here for you guys to rip apart (and hopefully

Re: [jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread blemming
On 12/28/06, blemming [EMAIL PROTECTED] wrote: Here is my first attempt at a plug-in. It is definitely in the early stage of development, but I thought I'd put it out here for you guys to rip apart (and hopefully provide a suggestions or two) Here it is = http://brilliantretail.com/cases

Re: [jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread blemming
I was just kidding. Turns out its been a long day and I often think I'm funnier than I am wycats wrote: Nah, I was asking a question about your plugin ;) On 12/29/06, blemming [EMAIL PROTECTED] wrote: well, I guess my plugin must not be that goodmy post got warpped

Re: [jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread blemming
I would love to add keyboard navigation to the dropdown but I don't even know where to start.. Anybody have any pointers to get me started in the right direction? blemming wrote: I was just kidding. Turns out its been a long day and I often think I'm funnier than I am wycats

Re: [jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread blemming
for graceful degradation. -- Yehuda On 12/29/06, blemming [EMAIL PROTECTED] wrote: * Be stylable in terms of borders and padding (based on the styles on the select box itself) There is no select box present in my plugin. If you notice it is based on a grouping of nested divs and the padding

Re: [jQuery] My First Plugin - Custom Select Box

2006-12-29 Thread blemming
via JS for graceful degradation. -- Yehuda On 12/29/06, blemming [EMAIL PROTECTED] wrote: * Be stylable in terms of borders and padding (based on the styles on the select box itself) There is no select box present in my plugin. If you notice it is based on a grouping of nested divs

[jQuery] How to get the form name

2006-12-31 Thread blemming
I have a UL inside some form tags and a I want to be able to get the name or id of that form. $('#ul_opts').ancestors('form').id() Works in IE but returns null in FF. Any thoughts? Thanks, David -- View this message in context:

Re: [jQuery] Thanks -- Jquery for a great tool in 2006

2006-12-31 Thread blemming
Cheers! Happy New Year. 2007 is going to be an exciting year with jQuery! wycats wrote: Hear hear! On 12/31/06, Scottus [EMAIL PROTECTED] wrote: Jquery is the first Javascript library that I found useful so I actually use it. Great job everyone who helped.

[jQuery] keydown fires twice in safari

2007-01-01 Thread blemming
I'm trying to put together some keyboard navigation for a plugin I am working on but the keydown function seems to fire twice when a key is selected in safari. Is this a bug? Here is an example= http://brilliantretail.com/cases/select3/test.html Simple Exampe The alert fires twice only in

Re: [jQuery] keydown fires twice in safari

2007-01-03 Thread blemming
Has anyone been able to confirm this issue in Safari? blemming wrote: I'm trying to put together some keyboard navigation for a plugin I am working on but the keydown function seems to fire twice when a key is selected in safari. Is this a bug? Here is an example= http

Re: [jQuery] keydown fires twice in safari

2007-01-03 Thread blemming
in safari but I'm unsure. Try being explicit in what you are attaching the event too. -- Brandon Aaron On 1/3/07, blemming [EMAIL PROTECTED] wrote: Has anyone been able to confirm this issue in Safari? blemming wrote: I'm trying to put together some keyboard navigation for a plugin I am

[jQuery] Validation help with Date Selector

2007-03-08 Thread blemming
I have a form with multiple inputs. One of them using the dateselector plugin. On validation that field gets jumbled up because of the placement of the date icon. What I'm wondering is on just that one field can I set the error message to appear in an alternate location? i.e. - Can I add

Re: [jQuery] Validation help with Date Selector

2007-03-08 Thread blemming
You can style it with the css class error I'm trying to move the location of it for one input. Rick Faircloth wrote: Have you figured out how to style the error message, yet? Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of blemming

[jQuery] Delay on keypress

2007-03-15 Thread blemming
I'm trying to put together a live search input for an internal app I'm working on and I can't seem to figure out how to delay the ajax call to only fire if the user hasn't typed a character for half a second or so. That way, the request isn't firing after every character is entered as the user

[jQuery] Moving Sortable items

2007-03-21 Thread blemming
Hello all, Is it possible to move sortables programatically? Here's my issue: I have a grouping of divs that I sort on with relative checkbox for each. If the corresponding checkbox is unchecked the div fades to .2 opacity. I would like to then animate a move of that div to the bottom of the