[jQuery] Syntax similar to IN in SQL

2009-01-21 Thread rsmolkin
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') ){

[jQuery] [autocomplete] - Problem with display after upgrading from 1.0 to 1.0.2

2008-07-11 Thread rsmolkin
Hi All, I just updated the version I was using 1.0 of the jquery autocomplete to version 1.0.2. And right away one thing does not work the same for me. The display used to be a nice list with no scroll bars and would say More at the bottom with arrows. Now it comes up with both a horizontal

[jQuery] Select Odd/Even rows out of visible rows

2008-04-28 Thread rsmolkin
Hi All, I've got a little problem. I have a table in which some rows are shown and hidden based on some selections. What I am trying to do is add the row-styping to this table, but what happens is something doesn't work right with the :even selector, and I get some rows next to each other of

[jQuery] Re: Select Odd/Even rows out of visible rows

2008-04-28 Thread rsmolkin
actually doing $('table.basic tbody tr:visible:even').addClass('even'); does work, and it just has to go in the right spot after all the show/ hide logic is done, as well as be called every time something is changed. -Roman On Apr 28, 9:41 am, rsmolkin [EMAIL PROTECTED] wrote: Hi All, I've

[jQuery] Jquery spell checker

2008-04-04 Thread rsmolkin
Has anyone seen a spell checker for text areas written in Jquery? I'm looking for one that is either stand-alone or can be used via AJAX connecting to ColdFusion. I would like to add a spell checker to all text areas that will work like Gmail. Thanks, -Roman

[jQuery] jQuery CharCounter Problem with limit reached

2008-04-02 Thread rsmolkin
Hi, I'm using the jquery charcounter to count and limit characters in text areas. It's working well for the most part, except for the following problem. If I paste in text that exceeds the limit and it's truncated to say 1000 characters that are allowed, and then I go in and select a couple of

[jQuery] Jquery Selector even and first child (nested tables striping)

2008-03-31 Thread rsmolkin
Hi, I've ran into a little problem. I'm using the code below to do alternate row striping on a table. $('table.basic tr:even').addClass('even'); The problem is, one of the cells of this table contains another (nested) table. So the tr:even selector is getting messet up, and

[jQuery] Re: Jquery Selector even and first child (nested tables striping)

2008-03-31 Thread rsmolkin
Ok, found a solution if anyone else is searching! $('table.basic tr:nth-child(even)').addClass('even'); -Roman On Mar 31, 2:45 pm, rsmolkin [EMAIL PROTECTED] wrote: Hi, I've ran into a little problem. I'm using the code below to do alternate row striping on a table

[jQuery] Lightbox v0.4 Button Placement

2008-03-06 Thread rsmolkin
Hi All, Does anyone know how to move the buttons in the JQuery Lightbox v0.4 (http://leandrovieira.com/projects/jquery/lightbox/)? I would like to have the Close button in the top right corner, the next button in the bottom right corner and the previous button in the bottom left corner.

[jQuery] Re: Dynamic Variables

2008-02-15 Thread rsmolkin
11, 2008, at 3:11 PM, rsmolkin wrote: Hi, I hope someone can help me out a bit. I am finding myself doing a lot of code (as I'll paste below). It's basically the same block of code with different variables. What I am trying to do is consolidate all that code into a funciton where

[jQuery] Dynamic Variables

2008-02-11 Thread rsmolkin
Hi, I hope someone can help me out a bit. I am finding myself doing a lot of code (as I'll paste below). It's basically the same block of code with different variables. What I am trying to do is consolidate all that code into a funciton where I can declare all the checkboxes I need to create

[jQuery] Datepicker showon link click

2008-01-30 Thread rsmolkin
Hi, Does anyone know how to make the Datepicker (calendar) be displayed by clicking on a link next to a textfield. I know it has a button option and a focus option, but our old calendar used to be launched by a link, so users are used to that. Does anyone know how to do that? Thanks, -Roman

[jQuery] Re: calling ajax with url parameter

2007-12-17 Thread rsmolkin
Does this actually work? Did you get this to work? I am trying to do the exact same thing, so for each link I need to pass 3 parameters to by server script. -Roman On Dec 4, 6:03 am, Feijó [EMAIL PROTECTED] wrote: I like to set my own attributes, like that a id=item1 href=javascript:; a=1

[jQuery] Simple Table Filter

2007-11-21 Thread rsmolkin
Hi, I've found a bunch of different filters for tables, but I need something much simpler. Can anyone help me out? I am displaying a list of Facilities ordered by State and City, where a facility name, phone, city and state are displayed. All I'd like to do is give the user ability to filter

[jQuery] Tablesorter and numbers formatted with commas

2007-11-06 Thread rsmolkin
Hi All, Does anyone know how to get the Tablesorter to properly sort numbers some of which have a comma separating the thousands. What I mean is I have a range of numbers anywhere from 0 to 10,000, and I want 958 to be above 1,104 but by default it's not. Any suggestions appreciaged. Thanks,

[jQuery] Re: Flash and jQuery

2007-10-16 Thread rsmolkin
Hi All, I tried doing this $(document).ready(function(){ $('#link_menu1').bind('click', function () { $('#mainTable').hide(); }); }); But it's not working. I think Flash is still taking away the click event. Can you please help me

[jQuery] two subscriptions to the same group

2007-10-15 Thread rsmolkin
Hi All, This is strange, and I am not sure how it happened, but I think somehow I got 2 different subscriptions to this group, one as rsmolkin and one as pixelwizzard. I went to edit my membership and changed it to only get 1 daily e-mail, yet I am still getting every message posted. Any idea

[jQuery] Show(1500) flicking on Firefox 1.0 and 2.0

2007-10-12 Thread rsmolkin
Hi All, I am trying to fade in a table on a page when a page loads $(document).ready(function(){ $('#mainTable').hide().show(1500); }); This works exactly as expected in IE, but for some reason in Firefox there are 2 issues. First of all instead of actually

[jQuery] Re: Flash and jQuery

2007-10-11 Thread rsmolkin
Hi Guys, Did you figure this out? I have a problem with links that were converted using sIFR and then I need to use them to do a show/hide using jQuery and it looks like Flash is stealing my click event, so the click event never gets called by jquery. Is there any way to get Flash to trigger