[jQuery] Authentication issue with ColdFusion and SiteMinder with SWFObject and jQuery

2009-08-25 Thread pixelwiz
Hello, I built a pretty cool admin tool which uses SWFUpload to do AJAX file uploading. However, while everything worked great in Development, once we added security to it, the file uploader doesn't work anymore. We use SiteMinder here, and it looks like somehow because the request is coming

[jQuery] Re: Cleartype issues with jquery/superfish in IE8

2009-08-10 Thread pixelwiz
I'm having this issue with IE8 as well and my implementation of Superfish menu. Anyone know of a fix? -Roman

[jQuery] Superfish Menu - Different Flyout Styles

2009-08-08 Thread pixelwiz
Hi, I really like this Superfish menu (http://users.tpg.com.au/j_birch/ plugins/superfish/#sample3) built with Jquery. But, I need to style it very differently. Does anyone know how to style the sub-menus that fly-out on hover differently? Thanks, -Roman

[jQuery] Re: Superfish Menu - Different Flyout Styles

2009-08-08 Thread pixelwiz
Ok, here is what I mean: http://zr.tixx4you.com/nav_flyout.asp I almost got it to work, but I can't figure out how to make to Hover class stay on (keep the main menu element highlighted) while the user hovers over the sub-elements. Thanks, -Roman

[jQuery] Re: Superfish Menu - Different Flyout Styles

2009-08-08 Thread pixelwiz
I think I figured it out, had to add one more selector to this (.sf- menu li.sfHover a) .sf-menu li:hover, .sf-menu li.sfHover, .sf-menu li.sfHover a, .sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active { background-color:#f26921; background-image:url(images/logo_tiny2.gif); }

[jQuery] Re: Superfish Menu - Different Flyout Styles

2009-08-08 Thread pixelwiz
Ok, new problem, looks fine in Firefox, but in IE6 it just looks horrible. Any ideas? http://zr.tixx4you.com/nav_flyout.asp

[jQuery] Limit if a value can be selected in a drop down list (select) based on other list

2009-06-09 Thread pixelwiz
Hi, I have a little problem. I have a page that displays a list of people playing in a tournament. I need to be able to generate a Leaderboard based on which players are manually selected by the admin. Next to each person there is a drop-down list. An admin can go in and select a slot that a

[jQuery] Re: Limit if a value can be selected in a drop down list (select) based on other list

2009-06-09 Thread pixelwiz
, waseem sabjee waseemsab...@gmail.com wrote: $(select).change(function() { var sval = $(this).va(); if(sal == 5) { } else {  // do something } }); On Tue, Jun 9, 2009 at 5:35 PM, pixelwiz pixel...@gmail.com wrote: Hi, I have a little problem. I have a page that displays a list

[jQuery] Re: Limit if a value can be selected in a drop down list (select) based on other list

2009-06-09 Thread pixelwiz
) { $(this).val(); alert(This slot is already selected for another player); } }); On Jun 9, 11:51 am, pixelwiz pixel...@gmail.com wrote: But how do I add in the fact that I need to check that the currently selected value is not already selected in one

[jQuery] Re: Limit if a value can be selected in a drop down list (select) based on other list

2009-06-09 Thread pixelwiz
')) { $(ddl_current).val(); alert(This slot is already selected for another player); } }); }); On Jun 9, 12:08 pm, pixelwiz pixel...@gmail.com wrote: Ok, figured it out, just in case

[jQuery] Re: Syntax similar to IN in SQL

2009-01-22 Thread pixelwiz
').slideDown('fast')     : $('#price_group_lesson_yes').slideUp('fast'); - ricardo On Jan 21, 7:15 pm, pixelwiz pixel...@gmail.com wrote: Hi All,  I am sure this is an easy question for someone in here.  Is there a better, cleaner, shorter way to write this: if ( ($('#price_group_lesson').attr

[jQuery] Syntax similar to IN in SQL

2009-01-21 Thread pixelwiz
Hi All, I am sure this is an easy question for someone in here. Is there a better, cleaner, shorter way to write this: if ( ($('#price_group_lesson').attr(value) == 'B') || ($ ('#price_group_lesson').attr(value) == 'C') || ($ ('#price_group_lesson').attr(value) == 'D') ){