RE: [jQuery] Re: how to make this really beautifull pattern

2010-02-10 Thread Rick Faircloth
I would start by having a look at the functionality of this plug-in: http://malsup.com/jquery/cycle/ Hope this helps... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of hno Sent: Wednesday, February 10, 2010 9:46 AM To: jQuery

RE: [jQuery] New Forums

2010-01-22 Thread Rick Faircloth
I do read people's posts and even if I don't know the answer, I read responses to learn and help when I can. I have to be in my email constantly for client communications and taking the jQuery list out of my central area of communications (email) is going to kill my participatio

RE: [jQuery] Live function syntax

2010-01-20 Thread Rick Faircloth
How about making a variable out of $("#tag").val() and using that for the css variable? $('#family').click(function() { value = $(this).val(); $('#tag').css('font-family', value); }); -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Be

RE: [jQuery] new forums used?

2010-01-18 Thread Rick Faircloth
> it is easier to use a spammed mailing list than a forum. Yes... I would gladly put up with some spam to keep all messages flowing to my inbox, rather than having to use a forum. I can filter the spam as it arrives... -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...

RE: [jQuery] new forums used?

2010-01-18 Thread Rick Faircloth
+ 1 Why not have both? (beside possible spammers)... I use the CF-Talk list constantly and it's email- and forum-based. Messages go to both email and the forum. Does the forum have "subscribe to this thread" capability? What the URL for the forum, anyway? Rick -O

RE: [jQuery] new forums used?

2010-01-18 Thread Rick Faircloth
Hi, David... What do you find more appealing about forums than an email list? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of speedpac...@gmail.com Sent: Monday, January 18, 2010 9:50 AM To: jQuery (English) Subject: [jQuery] new

RE: [jQuery] Re: Real time AJAX

2010-01-17 Thread Rick Faircloth
You have to remove yourself by logging into Google groups. And why don't we include instructions at the bottom of every page on how to remove oneself from the mailing list? There are sufficient questions on how to do this from users that it would seem to warranted. Rick From: j

RE: [jQuery] New forum completely inaccessible

2010-01-16 Thread Rick Faircloth
I would vote for using both the email list and forums. I would definitely not use the forum often since it requires opening a browser and going to site, getting to the forum, logging in, etc., etc too much trouble. Rick -Original Message- From: jquery-en@googlegroups.com

RE: [jQuery] Selecting instances separately

2010-01-16 Thread Rick Faircloth
I tried your code wrapped in $('document').ready(function() { ... }); and it worked fine... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Alexander Sent: Saturday, January 16, 2010 5:42 AM To: jquery-en@google

[jQuery] Re: how to do some animation when the page loads?

2010-01-09 Thread Rick van Hoeij
Hey Oliur, You could just do that after the document ready: $(document).ready(function(){ $(".divname").animate({ opacity: 0.5, }, 300 ); }); That should do the trick, I think. Greetz, Rick On Jan 9, 2:53 pm, Oliur wrote: > when the DOM is ready you can write &

[jQuery] Re: looping through form elements.

2010-01-09 Thread Rick van Hoeij
Well if you just want the element, you don't even need the ":". Just $ ('input') would do the trick. Greetz, Rick On Jan 8, 9:35 pm, rich wrote: > Rick, >      Thank you for your response.   I was able to figure out $ > (this).val() grabbed the value and you e

[jQuery] Re: Getting Div to Show after mouseout

2010-01-08 Thread Rick van Hoeij
#x27;); $(this).hide(); }); var month = $(this).attr("rel"); $("#m" + month).addClass('selected'); $("#m" + month).fadeIn(); }, function () {} ); Something like that. Hope this helps. Greetz, Rick On Jan 8, 12:40 am, TheHatchet wro

[jQuery] Re: Getting Div to Show after mouseout

2010-01-08 Thread Rick van Hoeij
#x27;); $(this).hide(); }); var month = $(this).attr("rel"); $("#m" + month).addClass('selected'); $("#m" + month).fadeIn(); }, function () { var month = $(this).attr("rel"); $("#m" + month).hide();

[jQuery] Re: Getting Div to Show after mouseout

2010-01-08 Thread Rick van Hoeij
Hey, I would add another class to the div you want to show. That way you can keep it selected until you go over another div. Like this: $("a.mSelect").hover( function () { $('.selected').each(function(){ $(this).hide(); }); var month = $(this).attr("rel"); $(

[jQuery] Re: looping through form elements.

2010-01-08 Thread Rick van Hoeij
Hey, Maby this will help: $('.input').each(function(){ alert('Value: ' + $(this).val() + ' - Type: ' + $(this).attr ('type')); }); That should do the trick. Just let me know. Greetz, Rick On Jan 7, 11:33 pm, rich wrote: > Hello all, I'm rel

RE: [jQuery] Why isn't this working as it does the other 1000 times...

2010-01-05 Thread Rick Faircloth
Nevermind.had an included js file that referenced and overlay div and crossed things up.doh! From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Rick Faircloth Sent: Tuesday, January 05, 2010 8:43 PM To: jquery-en@googlegroups.com Subject: [jQuery] Why isn&#

[jQuery] Why isn't this working as it does the other 1000 times...

2010-01-05 Thread Rick Faircloth
hidden.why? Thanks for any feedback! Rick --- "Those who hammer their guns into plows will plow for those who do not." - Thomas Jefferson

RE: [jQuery] Re: Looking for that plugin that uses scrollTo for product demos...

2010-01-04 Thread Rick Faircloth
Whoa! $299 for the Pro version! Unreal! Perhaps the last 9 is a typo, and the price is a more realistic $29. From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jack Killpatrick Sent: Monday, January 04, 2010 7:16 PM To: jquery-en@googlegroups.com Subject: Re

RE: [jQuery] css editor with jquery

2010-01-02 Thread Rick Faircloth
Very interesting work, Alfredo! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of orazio.nelson Sent: Saturday, January 02, 2010 9:26 AM To: jQuery (English) Subject: [jQuery] css editor with jquery Hello, i made a proof of concept

RE: [jQuery] Re: Toggle link Needs to Be UNDERNEATH!!!

2009-12-30 Thread Rick Faircloth
oggle link Needs to Be UNDERNEATH!!! Rick, If you wanted to have independent DIV'S that toggle, how would you do it? Erik On Dec 30, 10:36 am, "Rick Faircloth" wrote: > Perhaps it's a simple as an extra space in your jquery src link: > > > > > Note the

RE: [jQuery] Re: Toggle link Needs to Be UNDERNEATH!!!

2009-12-30 Thread Rick Faircloth
Did you get my last email about the "extra space" ? -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Erik Sent: Wednesday, December 30, 2009 10:44 AM To: jQuery (English) Subject: [jQuery] Re: Toggle link Needs to Be UNDERNEATH!!! Not

RE: [jQuery] Re: Toggle link Needs to Be UNDERNEATH!!!

2009-12-30 Thread Rick Faircloth
ra space, the code seemed to be working properly... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Erik Sent: Wednesday, December 30, 2009 9:19 AM To: jQuery (English) Subject: [jQuery] Re: Toggle link Needs to Be UNDERNEATH!!! Hi Rick

RE: [jQuery] Re: Toggle link Needs to Be UNDERNEATH!!!

2009-12-30 Thread Rick Faircloth
I took the code below and put it into my editor to format it so I could read more easily. Check your div openings and closings and make sure they match correctly. You've got some problems there that may be throwing off the functionality. Notice where you've got your CONTENT, CONTENT, etc... line

RE: [jQuery] Toggle link Needs to Be UNDERNEATH!!!

2009-12-30 Thread Rick Faircloth
What happens if you move your jquery source link to the top and leave your toggle code in the bottom? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Erik Sent: Wednesday, December 30, 2009 7:54 AM To: jQuery (English) Subject

RE: [jQuery] jQuery in Action = $15 off today (12/28)

2009-12-28 Thread Rick Faircloth
rand-new one", do you mean the completed second edition in print/pdf form? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jan Wilson Sent: Monday, December 28, 2009 11:55 AM To: jquery-en@googlegroups.com Subject: Re: [jQuer

RE: [jQuery] jQuery in Action = $15 off today (12/28)

2009-12-28 Thread Rick Faircloth
Thanks for the tip, Z... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of MorningZ Sent: Monday, December 28, 2009 9:38 AM To: jQuery (English) Subject: [jQuery] jQuery in Action = $15 off today (12/28) Just a heads up to people

RE: [jQuery] [ask]problem with ajax

2009-12-25 Thread Rick Faircloth
Check out the .live() function in jQuery for enabling ajax-added links to your HTML. hth, Rick From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of PUTRA PRIMA Sent: Friday, December 25, 2009 1:01 AM To: jquery-en@googlegroups.com Subject: [jQuery] [ask

RE: [jQuery] Feliz Navidad

2009-12-24 Thread Rick Faircloth
And to you! :o) From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of webmaster-uajms Sent: Thursday, December 24, 2009 10:46 PM To: /Intoxicado-coder:~$; albert.a...@gmail.com; Derek Henninger; etorre...@uajms.edu.bo; j...@xasamail.com; jm.neut...@filzmail.com; jm.n

RE: [jQuery] Re: how to access elements with index in for-loop

2009-12-23 Thread Rick Faircloth
Ø this is a pretty stupid way to loop through a jQuery object Is it necessary to be insulting to be helpful, Eric? What was your code like when you first began to write JS or jQuery? Always perfect and mature, I’m sure… Rick From: jquery-en@googlegroups.com [mailto:jquery

RE: [jQuery] How to get these two slide show to alternate?????

2009-12-23 Thread Rick Faircloth
need initial settings, then after the images start changing I need to change the timing settings. Seems like your idea and all the other timing changes I’ve tried should work, but nothing is giving me the timing I’m after. Thanks, Rick From: jquery-en@googlegroups.com

[jQuery] How to get these two slide show to alternate?????

2009-12-22 Thread Rick Faircloth
fx: 'fade', speed: 1000, delay: 6000, timeout: 3000 }); Thanks, Rick --- "Those who hammer their guns into plows will plow for those who do not." - Thomas Jefferson

[jQuery] Re: jQuery attaching actions to links with different class

2009-12-19 Thread Rick van Hoeij
I would use: $('a').click(function(){ var car_id = parseFloat($(this).attr('class')); $('#' + car_id).show(); }); Haven't tested this, but should work if I read your description right. Greetz, Rick On Dec 18, 1:57 pm, imot3k wrote: > Hi, > &g

[jQuery] Re: jquery text problem.

2009-12-19 Thread Rick van Hoeij
I usually use this code: $('#textbox_id').val() But I don't know id it is different in .net Hope this helps. Greetz, Rick On Dec 19, 11:48 am, suresh kumar wrote: > I am using jquery block to show the popup window. In which the popup > has two textboxes with two button

[jQuery] Re: Return values

2009-12-14 Thread Rick van Hoeij
because of the async of javascript I normally use callback functions to do the value passing. So instead of return true or return false in a ajax function, it's better to call a function with the true or false as a parameter. Just my two cents ;) On 12 dec, 20:24, Jojje wrote: > How deep in the

RE: [jQuery] Best Service

2009-12-11 Thread Rick Faircloth
You' think "Mr. globosoft" would at least attempt to mask the attempt to market deceitfully by not sending his message using the company name as his name, as well as sending the message from a non-globosoft web address ("skhalid.gst"). So much for subtlety... (and command of the subtleties of Engl

RE: [jQuery] Re: AND OR Expression

2009-12-10 Thread Rick Faircloth
ooglegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of MorningZ Sent: Thursday, December 10, 2009 7:23 PM To: jQuery (English) Subject: [jQuery] Re: AND OR Expression On Dec 10, 2:59 pm, "Rick Faircloth" wrote: > Demeaning attitude...real helpful...just make people feel stu

RE: [jQuery] Re: AND OR Expression

2009-12-10 Thread Rick Faircloth
groups.com [mailto:jquery...@googlegroups.com] On Behalf Of MorningZ Sent: Thursday, December 10, 2009 7:20 PM To: jQuery (English) Subject: [jQuery] Re: AND OR Expression On Dec 10, 2:59 pm, "Rick Faircloth" wrote: > Demeaning attitude...real helpful...just make people feel stupid w

RE: [jQuery] Re: AND OR Expression

2009-12-10 Thread Rick Faircloth
> "Expecting it to?" Demeaning attitude...real helpful...just make people feel stupid when they request help. Great community building skills, Z... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of MorningZ S

RE: [jQuery] New site with jquery: Cpluv

2009-12-08 Thread Rick Faircloth
The site loaded quickly for me...as quick or quicker than many mainly html sites...talking about ShaperStudio.com... -Original Message- From: jquery-en+ow...@googlegroups.com [mailto:jquery-en+ow...@googlegroups.com] On Behalf Of RobG Sent: Tuesday, December 08, 2009 8:41 AM To: jQuery (En

RE: [jQuery] Selector Help

2009-11-30 Thread Rick Faircloth
Good, practical formatting for understand “the chain”… From: Michael Geary [mailto:m...@mg.to] Sent: Monday, November 30, 2009 3:28 AM To: jquery-en@googlegroups.com Subject: Re: [jQuery] Selector Help That's a nice solution. Let's make it easier to follow with some indentation: $('a.

[jQuery] Re: add element after page has loaded

2009-11-26 Thread Rick van Hoeij
ready to be shown. Simple hide() and show(). Hope this helps. Greetz, Rick On 26 nov, 01:25, edencane wrote: > Hi. > > I have the following document.ready: > > $(document).ready(function(){ >         $('#formGen1').load('formGen1.jsp'); >         if(${mem

RE: [jQuery] Weird hight issue with show/hide div

2009-11-25 Thread Rick Faircloth
I'm not noticing any problem with the sliding/hiding div's id IE 8. All content seems to be showing, down to and including the "Next" button in each section... -Original Message- From: youradds [mailto:andy.ne...@gmail.com] Sent: Wednesday, November 25, 2009 10:31 AM To: jQuery (English)

RE: [jQuery] I want join this group

2009-11-23 Thread Rick Faircloth
Unless there's some level of "joining" that I've missed, it seems that you've already joined! Welcome! :o) Rick -Original Message- From: Miccel [mailto:maohong...@gmail.com] Sent: Sunday, November 22, 2009 1:17 AM To: jQuery (English) Subject: [jQuery] I want

RE: [jQuery] JQuery and ColdFusion

2009-11-23 Thread Rick Faircloth
I just set my session variables in the method I'm calling via jQuery/ajax ...any reason you can think of why that would be a bad idea? Rick -Original Message- From: Dave Evartt [mailto:da...@wehali.com] Sent: Friday, November 20, 2009 4:27 PM To: jquery-en@googlegroups.com Subjec

RE: [jQuery] JQuery and ColdFusion

2009-11-22 Thread Rick Faircloth
Did you ever get this worked out? Rick -Original Message- From: Westside [mailto:malik.robin...@gmail.com] Sent: Friday, November 20, 2009 2:29 AM To: jQuery (English) Subject: [jQuery] JQuery and ColdFusion Hi, I'm trying to use ColdFusion and JQuery but I'm having som

RE: [jQuery] Re: Why would jQuery be undefined in IE, but not FF???

2009-11-20 Thread Rick Faircloth
Really...I didn't realize it would point out syntax errors like that. Good to know... Thanks! Rick -Original Message- From: MorningZ [mailto:morni...@gmail.com] Sent: Friday, November 20, 2009 2:05 PM To: jQuery (English) Subject: [jQuery] Re: Why would jQuery be undefined in IE

RE: [jQuery] Why would jQuery be undefined in IE, but not FF???

2009-11-20 Thread Rick Faircloth
Yep…that was it. Thanks for your input, Michel! Rick From: Michel Belleville [mailto:michel.bellevi...@gmail.com] Sent: Friday, November 20, 2009 12:38 PM To: jquery-en@googlegroups.com Subject: Re: [jQuery] Why would jQuery be undefined in IE, but not FF??? The missing > is

RE: [jQuery] Re: Why would jQuery be undefined in IE, but not FF???

2009-11-20 Thread Rick Faircloth
Nice catch, Z! That was the problem. I never even thought to check that. Thanks! My weekend will be much better without that continuing irritation! Rick -Original Message- From: MorningZ [mailto:morni...@gmail.com] Sent: Friday, November 20, 2009 12:31 PM To: jQuery (English

RE: [jQuery] Why would jQuery be undefined in IE, but not FF???

2009-11-20 Thread Rick Faircloth
Thanks for the reminder on that one, Michel...I checked that to make sure the load sequence was correct, and it is… Rick From: Michel Belleville [mailto:michel.bellevi...@gmail.com] Sent: Friday, November 20, 2009 12:29 PM To: jquery-en

RE: [jQuery] Why would jQuery be undefined in IE, but not FF???

2009-11-20 Thread Rick Faircloth
. 'jQuery' is undefined (line 10 of jquery.cycle.2.03.pack.js) and 'jQuery' is undefined (line 90 www.holtzmanrealestate.com, which refers to the cycle plug-in script as defined below.) What could possibly be the issue? Rick From: Rick Faircloth [mailto:r...@whitestonemedi

[jQuery] Why would jQuery be undefined in IE, but not FF???

2009-11-20 Thread Rick Faircloth
he error message in the lower right corner of the browser window. Anyone know of anything that could be happening to cause this? Thanks, Rick --- "Those who hammer their guns into plows will plow for those who do not." - Thomas Jefferson

RE: [jQuery] Re: Konami Code >:]

2009-11-18 Thread Rick Faircloth
v 18, 5:56 pm, "Rick Faircloth" wrote: > What is this? > > Something unexpected happens when someone presses designated keys? > Easter Eggs? > > Got an example site? > > Rick > > -Original Message- > From: Marc Henson [mailto:m...@marchenson.

RE: [jQuery] Konami Code >:]

2009-11-18 Thread Rick Faircloth
What is this? Something unexpected happens when someone presses designated keys? Easter Eggs? Got an example site? Rick -Original Message- From: Marc Henson [mailto:m...@marchenson.co.uk] Sent: Wednesday, November 18, 2009 5:35 AM To: jquery-en@googlegroups.com Subject: Re: [jQuery

[jQuery] Re: Is mouse inside a div?

2009-11-16 Thread Rick van Hoeij
Hey, Don't know if you mean when you hover over a div? Cause then you should just use the hover event: $('#divid').hover(function(){} //Implement code while hovering ,function(){ // Implement code when you exit the div }); Hope this helps. Greetz, Rick

[jQuery] Re: Is mouse inside a div?

2009-11-16 Thread Rick van Hoeij
at: http://docs.jquery.com/Events Hope this helps. Greetz, Rick

RE: [jQuery] build menu on a 'event' location ?

2009-11-10 Thread Rick Faircloth
I wasn’t familiar with .offsetParent()…good stuff to know, Michel! Rick From: Michel Belleville [mailto:michel.bellevi...@gmail.com] Sent: Tuesday, November 10, 2009 7:46 AM To: jquery-en@googlegroups.com Subject: Re: [jQuery] build menu on a 'event' location ? As for lo

RE: [jQuery] My jQuery Pumpkin... Jealous?

2009-11-01 Thread Rick Faircloth
Great, Matt! :o) Rick -Original Message- From: Matt Kruse [mailto:m...@thekrusefamily.com] Sent: Sunday, November 01, 2009 12:01 AM To: jQuery (English) Subject: [jQuery] My jQuery Pumpkin... Jealous? Just a little fun for Halloween 2009. I carved my pumpkin this year as the jQuery

[jQuery] Re: Basic help with selectors

2009-10-27 Thread Rick Faircloth
Gotcha... -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of MorningZ Sent: Tuesday, October 27, 2009 12:31 PM To: jQuery (English) Subject: [jQuery] Re: Basic help with selectors On Oct 27, 12:16 pm, "Rick Faircloth" wr

[jQuery] Re: Basic help with selectors

2009-10-27 Thread Rick Faircloth
How about using a class instead of ID's? $('a.toggle_effect_button').click(function() { $(this).toggle('blind',500); return false; }); -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of MorningZ Sent: Tuesday, October

[jQuery] Re: take 3 values at time for fade in fade out effect.

2009-10-26 Thread Rick Faircloth
Can you show me the html and jQuery involved? I'm not sure what your code setup is and how you're trying to manipulate it... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of deep Sent: Monday, October 26, 2009 10:05 AM

[jQuery] Re: take 3 values at time for fade in fade out effect.

2009-10-26 Thread Rick Faircloth
What about index_news = index_news + 3 ? hth Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of deep Sent: Monday, October 26, 2009 9:40 AM To: jQuery (English) Subject: [jQuery] Re: take 3 values at time for fade in fade out

[jQuery] Re: new to this list

2009-10-24 Thread Rick Faircloth
Thanks for the plug-ins, Nivanka and welcome to the list! :o) Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Nivanka Sent: Saturday, October 24, 2009 12:46 AM To: jQuery (English) Subject: [jQuery] new to this list Though I am

[jQuery] Re: loading message shows up after page has loaded

2009-10-21 Thread Rick Faircloth
Mike! Crawl back under your rock, you fathead!!! There...how's that? :o) Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Mike Alsup Sent: Wednesday, October 21, 2009 7:51 PM To: jQuery (English) Subject: [jQuery] Re: lo

[jQuery] Re: new autosuggestion plug-in. need comments/feedback

2009-10-16 Thread Rick Faircloth
Thanks...let us know on the list when the ajax is done! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of George Sent: Friday, October 16, 2009 3:26 PM To: jQuery (English) Subject: [jQuery] Re: new autosuggestion plug-in. need

[jQuery] Re: new autosuggestion plug-in. need comments/feedback

2009-10-16 Thread Rick Faircloth
Thanks for letting me know. I would definitely need ajax support. Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of George Sent: Friday, October 16, 2009 3:09 PM To: jQuery (English) Subject: [jQuery] Re: new autosuggestion plug

[jQuery] Re: new autosuggestion plug-in. need comments/feedback

2009-10-16 Thread Rick Faircloth
Very responsive, George! I'll definitely take a look at this. I have been wanting to implement autocomplete, but just haven't gotten around to it. Thanks for sharing! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of G

[jQuery] jquery autocomplete plugin - hardcoded overflow: auto

2009-10-14 Thread Rick Strahl
The explicit hard coding seems entirely unnecessary since the styling can take care of this. +++ Rick ---

[jQuery] Re: mouseenter/mouseover timeout

2009-10-13 Thread Rick Faircloth
Not getting any flicker in IE8... -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of JLHeidecker Sent: Tuesday, October 13, 2009 10:16 PM To: jQuery (English) Subject: [jQuery] mouseenter/mouseover timeout Regarding: Preview images at h

[jQuery] Re: (validate) - How do I validate required fields before form submit

2009-10-13 Thread Rick Faircloth
Does Jorn's plug-in still not work on blur? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Josh Sent: Tuesday, October 13, 2009 4:28 PM To: jQuery (English) Subject: [jQuery] Re: (validate) - How do I validate required f

[jQuery] Re: My code is not working getting an error missing )

2009-10-11 Thread Rick Faircloth
you're using so I can at least try to get the rollover part working? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of jessie Sent: Sunday, October 11, 2009 8:31 AM To: jQuery (English) Subject: [jQuery] Re: My code is not working

[jQuery] Re: My code is not working getting an error missing )

2009-10-10 Thread Rick Faircloth
gbutton"); $(".button").removeClass("imgbuttonhover"); } ) }); After working with this in my editor, this is the bracketing that I used to eliminate the error you were getting. Now, however, I get this error in Firebug: $("div.LPButton, div.CatM

[jQuery] Re: My code is not working getting an error missing )

2009-10-10 Thread Rick Faircloth
d a half and still can't get it to work for all. The code i have above i've put together from other ppl who have helped me with my problem of rolling images and buttons. Hope someone can help me figure this one out once and for all. I'm very very new to jquery and the reason i'

[jQuery] Re: Assigning CSS 'display:block' by jquery not working

2009-10-10 Thread Rick Faircloth
ot;Home" ? Or what is the effect you're after? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Caisys Sent: Saturday, October 10, 2009 4:02 PM To: jQuery (English) Subject: [jQuery] Assigning CSS 'display:block

[jQuery] Re: My code is not working getting an error missing )

2009-10-10 Thread Rick Faircloth
Now, Matt! I just knew by the time I typed up a long-winded reply, someone would come along and give the short, to-the-point, answer. :op :o) Rick From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Matt Quackenbush Sent: Saturday, October 10, 2009 9:32

[jQuery] Re: My code is not working getting an error missing )

2009-10-10 Thread Rick Faircloth
button { background:#abc; width:50opx; height:50px; } .buttonHover { background:#def; width:50px; height:50px; } JQUERY: $(document).ready(function() { $("#myButton").hover(function() { $(this).removeClass("button"); $(this).addClass("buttonHover");

[jQuery] Re: Multiple checkbox validation

2009-10-07 Thread Rick Faircloth
If you only want to force only one checkbox to be checked at any given time, why not just use radio inputs? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of OOps Sent: Wednesday, October 07, 2009 2:48 AM To: jQuery (English

[jQuery] Re: tooltip - how do i remove an existing tooltip

2009-10-02 Thread Rick Faircloth
How about giving the tooltip an identifier, such as a class name, and remove the class once the validation is satisfied. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of cgipson Sent: Friday, October 02, 2009 1:51 PM To: jQuery (English)

[jQuery] Re: XXX hot sexy banned movie XXX

2009-09-29 Thread Rick Faircloth
Yeah, right...we know you just sent out the notice to the wrong group in your contacts list! :o) -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Mike Alsup Sent: Tuesday, September 29, 2009 7:09 PM To: jQuery (English) Subject: [jQuer

[jQuery] Re: Every post I make, I get an mail error.

2009-09-28 Thread Rick Faircloth
I got some of those, too, not long ago, but haven't had any recently. From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Charlie Griefer Sent: Sunday, September 27, 2009 10:05 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Every post I make, I get an mail

[jQuery] Re: This works in Firefox and Chromium, but not Safari

2009-09-27 Thread Rick DeNatale
ht(), it's the radix argument to parseInt, the result of which multiplied by the current height is the single argument to height -- Rick DeNatale Blog: http://talklikeaduck.denhaven2.com/ Twitter: http://twitter.com/RickDeNatale WWR: http://www.workingwithrails.com/person/9021-rick-denatale

[jQuery] Re: This works in Firefox and Chromium, but not Safari

2009-09-27 Thread Rick DeNatale
Actually, I don't think this is working in Chrome, so it looks like it's a webkit issue perhaps. On Sun, Sep 27, 2009 at 1:50 PM, Rick DeNatale wrote: > Safari Version 4.0.3 (6531.9) > Firefox Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; > rv:1.9.1.3) Gecko/200

[jQuery] This works in Firefox and Chromium, but not Safari

2009-09-27 Thread Rick DeNatale
number of rows in one of the tds within the row, and the url to fetch the replacement in another. I then use the adustAfterLoad custom event to get the url and resize the height of the row by multiplying it by the number of rows to be loaded. On Safari the line to adjust the height seems to hav

[jQuery] Re: Prevent jagged text in IE

2009-09-26 Thread Rick Faircloth
Much appreciated, Mike! It's been of tremendous benefit! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Mike Alsup Sent: Saturday, September 26, 2009 9:26 AM To: jQuery (English) Subject: [jQuery] Re: Prevent jagged text

[jQuery] Re: getJSON callback not firing?

2009-09-25 Thread Rick Faircloth
search?q=get+vs+post It's very important to understand the difference as browsers (mainly IE) have issues with GET in some cases, and all browsers handle caching differently between the two On Sep 25, 6:28 pm, "Rick Faircloth" wrote: > Hang in there, Charlie! > > My head w

[jQuery] Re: Prevent jagged text in IE

2009-09-25 Thread Rick Faircloth
I include a reference to a file with this jQuery code in every page to solve that problem, Dave. Best solution I've found so far. I got it from someone, somewhere, but don't remember who. Rick jQuery.fn.fadeIn = function(speed, callback) { return th

[jQuery] Re: getJSON callback not firing?

2009-09-25 Thread Rick Faircloth
cally specify the method as "post", occasionally venturing to use "get" when just retrieving data, just to see what might happen.nothing different. (and actually, I recognized that censored expression, having been there! :o) Rick From: jquery-en@googlegroups.com [mailto:j

[jQuery] Documentation Recommendation

2009-09-25 Thread Rick
It should be noted that you are able to pass in jQuery objects to html () (and probably the others append() ...)

[jQuery] Re: Can't seem to figure out this simple toggle situation...

2009-09-23 Thread Rick Faircloth
Thanks Anantha...that worked well. I don't understand this line, however: if ( test.find('img:visible').attr('src') ) It's the .attr('src'), in particular, that I don't understand. What does that part do? Rick -Original Message- Fr

[jQuery] Can't seem to figure out this simple toggle situation...

2009-09-23 Thread Rick Faircloth
} }); } Something's obviously wrong, but I don't know which part. Ideas? (Seems like this should be simple, but I'm just not getting it.) Thanks, Rick

[jQuery] Re: Need a callback function to delay processing...

2009-09-23 Thread Rick Faircloth
I think there is an event listener right in the code below: By placing additional processes in this block: jFrame.load(function(objEvent) { the processing is delayed until after the files are loaded. I think I'm on the right track. Rick -Original Message- From: jque

[jQuery] Re: Need a callback function to delay processing...

2009-09-23 Thread Rick Faircloth
ny suggestions! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Mike McNally Sent: Wednesday, September 23, 2009 10:45 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Need a callback function to delay processing... Put the stu

[jQuery] Need a callback function to delay processing...

2009-09-23 Thread Rick Faircloth
and suggestions! Rick Here's the code: function processAddRentalPropertyForm() { var addNewRentalPropertyForm = $('#addNewRentalPropertyForm'); addNewRentalPropertyForm.submit(function(objEvent) { var jThis = $(this); var str

[jQuery] Re: [Attrib "external" not working...]

2009-09-22 Thread Rick Faircloth
Now why would target="_blank" be deprecated without a suitable HTML substitute, requiring coders to have to resort to js for the functionality? Odd... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Liam Potter Sen

[jQuery] Re: href value

2009-09-18 Thread Rick Pasotto
the $_GET array and add each element to the initial url. > On Thu, Sep 17, 2009 at 11:21 AM, Rick Pasotto wrote: > > > > I have the following function defined: > > > > $(function () { > >    $('a[href*=http:]').click(function() { > >        open('

[jQuery] href value

2009-09-17 Thread Rick Pasotto
t it's a quoting problem. How do I get all the GET parameters to be treated as a single string? -- "Take a chance! All life is a chance. The man who goes farthest is generally the one who is willing to do and dare." -- Dale Carnegie Rick Pasottor...@niof.nethttp://www.niof.net

[jQuery] Re: saving values from a multi select list.

2009-09-15 Thread Rick Faircloth
I don't have the original message in my email any longer. Can you post the code involved? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of shaded Sent: Tuesday, September 15, 2009 9:42 AM To: jQuery (English) Subject: [jQuer

[jQuery] Re: Hide/Show based on radio button selected

2009-09-14 Thread Rick Faircloth
ame=radioName]:not(:checked)'.click(function() { $('#offices_checkboxes').hide(); }); }); This code makes use of the name of the radio button group, as well. hth, Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Beh

[jQuery] Re: Twitter for support?

2009-09-14 Thread Rick Faircloth
+100 -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Ashley Sent: Monday, September 14, 2009 12:21 PM To: jQuery (English) Subject: [jQuery] Re: Twitter for support? Twitter is highly ephemeral and I don't think it's a good idea to sp

[jQuery] Re: event coordination problem

2009-09-13 Thread Rick Faircloth
ave a field that hasn't been validated and have the submit button fire, too. The user has to blur out of the field to achieve validation and enabling of the submit button. Am I misunderstanding? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.c

[jQuery] Re: Does anyone see any problem with this code that might cause IE not to work with it?

2009-09-13 Thread Rick Faircloth
ng to have to break down the jquery and coldfusion to a very simple version with only one or two values to see if somehow it's the values or processing of them that's giving IE fits. Thanks for looking. Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@

  1   2   3   4   5   6   7   8   9   10   >