[jQuery] Re: Why won't this work?

2008-12-15 Thread Rick Faircloth
here: http://paste.pocoo.org/show/95547/ Rick From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Rick Faircloth Sent: Monday, December 15, 2008 9:58 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Why won't this work? Yes, that's

[jQuery] Re: Why won't this work?

2008-12-15 Thread Rick Faircloth
ou? is this on a server somewhere we can see it in all its glory in a browser? On Mon, Dec 15, 2008 at 6:43 PM, Rick Faircloth wrote: Well.bummer. Works for me, too, when it's on *your* server, Charlie. You've just got the magic touch. Will this entire b

[jQuery] Re: Why won't this work?

2008-12-15 Thread Rick Faircloth
work? still workin' fine for me. http://charlie.griefer.com/code/rick.cfm On Mon, Dec 15, 2008 at 6:30 PM, Rick Faircloth wrote: Yeah, there's plenty of other code running. Here's what's on the page.see anything that conflicts? -- I have failed as much as I have

[jQuery] Re: Why won't this work?

2008-12-15 Thread Rick Faircloth
day, December 15, 2008 9:25 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Why won't this work? hides it for me. you may have something else going on in the page? another element with the same ID? some other conflict? run just the code that you posted in the original message

[jQuery] Re: Why won't this work?

2008-12-15 Thread Rick Faircloth
jquery-en@googlegroups.com Subject: [jQuery] Re: Why won't this work? what does not work? 2008/12/16 Rick Faircloth Why won't this... $(document).ready(function(){ $('#emailError').hide(); }); hide this... Please enter your email address. ??? Rick

[jQuery] Why won't this work?

2008-12-15 Thread Rick Faircloth
Why won't this... $(document).ready(function(){ $('#emailError').hide(); }); hide this... Please enter your email address. ??? Rick

[jQuery] Re: Where's my syntax error?

2008-12-15 Thread Rick Faircloth
> > > Remove the last ) > > Karl Rudd > > On Tue, Dec 16, 2008 at 12:31 PM, Rick Faircloth > wrote: > > > > Can't figure out what I've got wrong. > > Firebug is telling me "syntax error });" > > > > Could someone please point

[jQuery] Where's my syntax error?

2008-12-15 Thread Rick Faircloth
Can't figure out what I've got wrong. Firebug is telling me "syntax error });" Could someone please point out the error? (Perhaps the entire coding is wrong...just trying out something similar I saw on the list a moment ago) Thanks, Rick $(document).ready(function(){

[jQuery] Re: Would anyone care to critique my approach/code to this login scheme?

2008-12-12 Thread Rick Faircloth
roach/code to this > login scheme? > > > On Fri, Dec 12, 2008 at 2:13 PM, Rick Faircloth > wrote: > > > > Hi, Brian, and thanks for the feedback. > > > > This solution mixes jQuery and CF, so I posted it to the CF-Talk list, as > > well. > >

[jQuery] Re: Would anyone care to critique my approach/code to this login scheme?

2008-12-12 Thread Rick Faircloth
code to this > login scheme? > > > Because your server var is not being set (or saved to the session, or > whatever), this really is a Coldfusion issue. > > On Fri, Dec 12, 2008 at 12:14 PM, Rick Faircloth > wrote: > > > > Hello, all... > > > > I appreciate eve

[jQuery] Re: What's the correct way to write this code?

2008-12-12 Thread Rick Faircloth
pty().fadeIn(1000).append(response.login); > } > > On Dec 12, 9:07 am, MorningZ wrote: > > Wow, this is just basic JavaScript syntax > > > > if (conditon) { > > > > } > > else { > > } > > > > you have > > > >  if (respon

[jQuery] Re: What's the correct way to write this code?

2008-12-12 Thread Rick Faircloth
Thanks, Eric! > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > Behalf Of Eric > Sent: Friday, December 12, 2008 11:13 AM > To: jQuery (English) > Subject: [jQuery] Re: What's the correct way to write this code? > > > If you're looking for

[jQuery] Re: Submit a form automatically

2008-12-12 Thread Rick Faircloth
Sorry I don't have an answer for you, Adam. (I'm new to js and jQuery) But I was just curious as to what you were trying to do with a dynamically created (and dynamically filled?) form that submits immediately? Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery..

[jQuery] Would anyone care to critique my approach/code to this login scheme?

2008-12-12 Thread Rick Faircloth
Hello, all... I appreciate everyone's help in getting my first ColdFusion/Ajax/jQuery code working for this login...except for one minor (sarcasm) point. The cf line of code in the first page below (PRE_LOGIN.CFM), which should prevent the login dialog from appearing after someone logs in, is not

[jQuery] Re: What's the correct way to write this code?

2008-12-12 Thread Rick Faircloth
ript. It's a pretty great way to learn the basic mechanics. http://www.w3schools.com/JS/default.asp On Dec 12, 9:51 am, "Rick Faircloth" wrote: > Thanks for the re-write, Hobo! I like the case syntax. > > Also, the tip on the "==" vs "=" is good too. I'm jus

[jQuery] Re: What's the correct way to write this code?

2008-12-12 Thread Rick Faircloth
way to write this code? > > > If you haven't already, I'd check out the w3c schools intro to > Javascript. > It's a pretty great way to learn the basic mechanics. > > http://www.w3schools.com/JS/default.asp > > On Dec 12, 9:51 am, "Rick Fairclo

[jQuery] Re: What's the correct way to write this code?

2008-12-12 Thread Rick Faircloth
quot;Login Successful" > response.login == "Login Successful"; // Tests to see if > response.login is equal to the string "Login Successful" > > On Dec 12, 9:07 am, MorningZ wrote: > > Wow, this is just basic JavaScript syntax > > > > if (condito

[jQuery] Re: What's the correct way to write this code?

2008-12-12 Thread Rick Faircloth
ul"); > > drop the semi-colon after both your (conditions) > > > > On Dec 12, 8:58 am, "Rick Faircloth" wrote: > > How should this be written?  I can't figure it out. > > I keep getting "syntax error: else" > > > > su

[jQuery] What's the correct way to write this code?

2008-12-12 Thread Rick Faircloth
How should this be written? I can't figure it out. I keep getting "syntax error: else" success: function(response){ if (response.login = "Login Successful"); {top.location.href = "site_manager.cfm"} else if (response

[jQuery] Re: Need help with Ajax-ColdFusion-Modal Login...

2008-12-11 Thread Rick Faircloth
Thanks for the perspective, Mike. Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > Behalf Of Mike Chabot > Sent: Thursday, December 11, 2008 10:16 PM > To: jquery-en@googlegroups.com > Subject: [jQuery] Re: Need help with Ajax-ColdFus

[jQuery] Re: Need help with Ajax-ColdFusion-Modal Login...

2008-12-11 Thread Rick Faircloth
back. > That function can change content, close a modal window, or redirect to > another page. > > Good luck, > Mike Chabot > > On Thu, Dec 11, 2008 at 8:36 PM, Rick Faircloth > wrote: > > > > I just can't seem to get my head around the processing > &g

[jQuery] Need help with Ajax-ColdFusion-Modal Login...

2008-12-11 Thread Rick Faircloth
I just can't seem to get my head around the processing flow for an ColdFusion and Ajax-based login using a Shadowbox modal window... Does anyone know of any tutorials that show how to use ColdFusion, jQuery, and a modal window (doesn't have to be a Shadowbox) for login? I found a tutorial by Ray

[jQuery] Re: How do I write a function to close shadowbox?

2008-12-10 Thread Rick Faircloth
M > To: jquery-en@googlegroups.com > Subject: [jQuery] Re: How do I write a function to close shadowbox? > > > Shadowbox.close() > > (I've never used it Myself, so YMMV) > > On Wed, Dec 10, 2008 at 4:10 PM, Rick Faircloth > <[EMAIL PROTECTED]> wrote: > >

[jQuery] How do I write a function to close shadowbox?

2008-12-10 Thread Rick Faircloth
For my "success" callback (I guess that's what you call it...) I've got a series of events after an $.ajax post. Here they are: $('#contentdiv').empty().fadeIn(1000).append(response.login); $('#my_story').empty().fadeIn(2000).append(response.my_story); $('#email').empty().fadeIn(2000).append(res

[jQuery] Re: Need help modifying this jQuery...

2008-12-07 Thread Rick Faircloth
#x27;s a little strange to have form fields with a form tag, but whatever works... Thanks for your help! Rick Rick Faircloth wrote: Hi, Andrew, and thanks for the code. I've been *partially* successful and I don't quite understand why things are happening the way they are...it could

[jQuery] Re: Need help modifying this jQuery...

2008-12-07 Thread Rick Faircloth
ny more help is appreciated! Rick aschmid wrote: Rick, You could try the form plugin as below Email: Password: $(document).ready(function() { // bind 'myForm' and provide a simple callback function $('#myForm&

[jQuery] Need help modifying this jQuery...

2008-12-07 Thread Rick Faircloth
I'm trying to put my first Ajax to use by creating a login form. To get there, I'm attempting to modify the first tutorial I've found which I understand enough to understand what it's doing and how it's working with a ColdFusion backend. Anyway, my first question is: How do I modify the code b

[jQuery] Just wondering if everyone saw this headline this morning...

2008-12-02 Thread Rick Faircloth
*Microsoft embraces open source with jQuery* Microsoft plans to integrate the JQuery library into both the ASP.NET Web Forms and ASP.NET Model View Controller frameworks. Tony Patt

[jQuery] Re: IE Issue - Argument not valid - Creating a Jquery Magnifier

2008-11-29 Thread Rick Faircloth
What's the demo url for the magnifier? Rick Anyulled wrote: Thanks Dave, your suggestion worked pretty fine. Now i'm gonna try to change the magnifier windows and zoom ratio with hitting the arrow keys. does anyone know how to make IE not show the alt info when the mouse is over the image? i

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-24 Thread Rick Faircloth
ogle. Many CMS have built in bread crumbs, so hopefully you can use one of these. The links are all dummy links, just to show how it works. Thanks! Jason On Nov 21, 9:28 pm, Rick Faircloth <[EMAIL PROTECTED]> wrote: Jason... I'm not sure I understand what your plug-in is for.

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-21 Thread Rick Faircloth
Jason... I'm not sure I understand what your plug-in is for. When you say it's a "breadcrumb" plugin, I thought you meant it would show a site visitor the "trail" of pages visited. I'm not quite sure I know how to set this up. I created actual pages from your demo...biocompate.html, kits_assay

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-21 Thread Rick Faircloth
Very nice, Jason! I'll put that one to use! Rick heysatan wrote: jBreadCrumb RELEASED Hi all, I've put the breadcrumb plugin up on jquery's site: http://plugins.jquery.com/project/jBreadCrumb Here's a link to the working example (also linked to from the jquery page) http://www.comparenetw

[jQuery] Re: text-shadow

2008-11-12 Thread Rick Faircloth
Looks good, Martin. I'll work on implementing it soon and provide some feedback then. However, it's certainly good to know this is available. It will save me a *lot* of time not having to create graphics when I want text shadows! Thanks for the good work! Rick Martin Hintzmann wrote: Hello

[jQuery] Re: [ showcase ] lisapram.com - interactive barcode

2008-11-11 Thread Rick Faircloth
Very nice, Lisa... Cutting edge, but still navigable and understandable with the addition of the small rectangles underneath slides. Good work. Good photography, too! Rick Alexandre Plennevaux wrote: Friends, That's it, i digested your comments, and now the website is launched. Thank yo

[jQuery] Re: animated robot cartoon with jquery

2008-11-07 Thread Rick Faircloth
Unfortunately, I only get to dabble with jQuery. Just enough to get done what I need for the moment. Too many projects and too much ColdFusion programming to do. So, mostly, I contribute by asking the most basic questions that others are embarrassed to ask! :-) Mike Alsup wrote: Unfortuna

[jQuery] Re: animated robot cartoon with jquery

2008-11-07 Thread Rick Faircloth
Are you kidding! I'm still so basic in jQuery that I'm just now getting ready to try and implement my first modal dialogue! I'm always behind everyone else! I just moved to ColdFusion 8 from 4.5 a few months ago! :-D Andy Matthews wrote: He's only saying that so he can get out of responsi

[jQuery] Re: animated robot cartoon with jquery

2008-11-06 Thread Rick Faircloth
Great job, Anthony! Unfortunately, I'm new to jQuery and Javascript, too, so I'm of no use to you on the code. Hope you presentation goes well! Rick anthony.calzadilla wrote: Hi all, I occasionally volunteer as a guest speaker for the web design class at my child's elementary school. I wa

[jQuery] Re: Gradientz

2008-11-04 Thread Rick Faircloth
Nice, weepy! Works nicely now in IE6, IE7, FF3, and Chrome... all that I tested. Thanks for the good work! Rick weepy wrote: Ok this is fixed -> I've just pushed a new version. Check again - it should be fixed. http://www.parkerfox.co.uk/labs/gradientz/ On 4 Nov, 14:37, Rick F

[jQuery] Re: Gradientz

2008-11-04 Thread Rick Faircloth
Here's one way to modify the markup and get the text within the gradient area: This is the text in my gradient box! This will certainly save a lot of time creating background images! Rick Rick Faircloth wrote: Thanks, weepy... When you sa

[jQuery] Re: Gradientz

2008-11-04 Thread Rick Faircloth
Thanks, weepy... When you said it "creates graduated backgrounds" I assumed it would respond like a true background image. Perhaps that's not what you intended. Rick weepy wrote: Ah Rick - I'll take a look. On 4 Nov, 14:14, Rick Faircloth <[EMAIL PROTECTED]&

[jQuery] Re: Gradientz

2008-11-04 Thread Rick Faircloth
Hey, I like gradientz very much! Question... how do I make the gradient to be the background for a div? I created a div with a gradient and put the text inside the div, but the text appears outside the gradient, not over it... $(document).ready(function() { $('#box1').gr

[jQuery] We need this for jQuery!

2008-11-03 Thread Rick Faircloth
Anyone who has been frustrated by trying to keep up with what jQuery core works with which plug-ins will appreciate what Yoxos.com has done for the Eclipse platform and all it's plug-ins. jQuery and Eclipse have the same basic problem. A great core and tons of great plug-ins, but problems keepi

[jQuery] Re: my first plugin

2008-11-02 Thread Rick Faircloth
Nice work, diego! Rick diego wrote: I've updated my plugin, i added: caption as option, thumbs_nav when image is zoomed, auto resize of images if bigger then window dimension. http://www.pirolab.it/pirobox/ Regards Diego On 29 Ott, 00:18, diego <[EMAIL PROTECTED]> wrote: Hi Microbe,

[jQuery] Re: New to Jquery, have written Validation script...

2008-10-14 Thread Rick Faircloth
on keypress. Details about that are documented here:http://docs.jquery.com/Plugins/Validation/Reference#Validation_event Jörn On Tue, Oct 14, 2008 at 12:23 PM, Rick Faircloth <[EMAIL PROTECTED]> wrote: Jorn, Does your plug-in offer on-blur validation? Rick Jörn Zaeffer

[jQuery] Re: New to Jquery, have written Validation script...

2008-10-14 Thread Rick Faircloth
Jorn, Does your plug-in offer on-blur validation? Rick Jörn Zaefferer wrote: Have you looked at this validation plugin? http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Jörn On Tue, Oct 14, 2008 at 5:16 AM, Nishan Karassik <[EMAIL PROTECTED]> wrote: That is really slick.

[jQuery] Re: An Interesting Twist on a Pastebin

2008-10-09 Thread Rick Faircloth
Looks great! Rick pixeline wrote: guys, we should definitely use this online tool to ask questions. it seems really useful to our mailinglist ! Sent to you by pixeline via Google Reader: An Interesting Twist on a Pastebin

[jQuery] Re: Processing.js Google Group Now Formed!

2008-10-06 Thread Rick Faircloth
Ok...I'll ask...what is "Processing.js" about? Rick chris thatcher wrote: I started using processing.js also, I'll definitely join this group! Thatcher On Sat, Oct 4, 2008 at 7:16 PM, F1LT3R <[EMAIL PROTECTED] > wrote: Hey Joe, I love using Processing s

[jQuery] Re: Processing.js Google Group Now Formed!

2008-10-04 Thread Rick Faircloth
and John's skills show clearly in it's simplicity and it's completeness. Thatcher On Sat, Oct 4, 2008 at 9:26 PM, Rick Faircloth <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: Ok...I'll ask...what is "Processing.js" about? Ric

[jQuery] Re: NEW PLUGIN (beta): ContextMenu

2008-10-03 Thread Rick Faircloth
Nice work, Matt. I'm sure that will come in handy! Thanks for sharing it! Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Thursday, October 02, 2008 8:18 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: NEW PLUGIN (beta): Cont

[jQuery] Re: List overload

2008-10-03 Thread Rick Faircloth
I think separating the lists into various subgroups would be a good idea. Most groups eventually grow beyond what can be sustained on one list...and the traffic right now is quite heavy. Perhaps this main group for using the jQuery-Core, plus jQuery-Newbie, and jQuery-Plugins would be a good sta

[jQuery] Re: unsubscribe

2008-10-01 Thread Rick Faircloth
I just searched Google for "Google Groups jQuery" and got this result at the top: http://groups.google.com/group/jquery-en/about Go there, sign in (top right), click on "Edit My Membership" (right) and then you'll see an "Unsubscribe" button. Rick From: jquery-en@googlegroups.com

[jQuery] Re: Superfish v1.4.8 using two menus one under another

2008-09-25 Thread Rick Faircloth
> > > Hi Rick, > > I have tried to to set z-index: 99 to the top menu and 0 to the bottom > but still have the same effect... > > Thank you. > > On Sep 24, 8:11 pm, "Rick Faircloth" <[EMAIL PROTECTED]> wrote: > > Hi,Ilya... &g

[jQuery] Re: Superfish v1.4.8 using two menus one under another

2008-09-24 Thread Rick Faircloth
Hi, Ilya... Trying increasing the z-index on the top menu and see if that helps. Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ilya > Sent: Wednesday, September 24, 2008 3:44 PM > To: jQuery (English) > Subject: [jQuery] Superfish v1

[jQuery] Re: New jQuery Website...

2008-09-10 Thread Rick Faircloth
IL PROTECTED]> wrote: > > Amen to this sort of thing being a royal pain in the arse! :o( > > > > Chris > > > > On Wed, Sep 10, 2008 at 11:26 AM, Rick Faircloth > > <[EMAIL PROTECTED]>wrote: > > > > > > > > > > > > >

[jQuery] Re: New jQuery Website...

2008-09-10 Thread Rick Faircloth
not supported sorry} > > IE 7.0.5730.11 falls in to ie6 but IE7, 7.0.5730.13 will not > > where as > if (ff3){ > do somthing for ff3 > } else if (ie7){ > do somthing for ie7 > } else if (ie6){ > do somthing for ie6 > }else{ > not supported sorry} > > I

[jQuery] Re: New jQuery Website...

2008-09-10 Thread Rick Faircloth
nch is the largest hole is XP IE users... > IE 7.0.5730.11 > IE 7.0.5730.13 > and all of IE 6 ... > but i haven't check those since work eralyer today > jeremyBass > > On Sep 9, 5:19 pm, "Rick Faircloth" <[EMAIL PROTECTED]> wrote: > > Chris

[jQuery] Re: New jQuery Website...

2008-09-09 Thread Rick Faircloth
008 at 12:26 PM, jeremyBass <[EMAIL PROTECTED]> wrote: I don't know if this is just me but the site is all kinds of broken... I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs... I'd give a url but ... well it's almost everywhere... cool i

[jQuery] Re: New jQuery Website...

2008-09-09 Thread Rick Faircloth
It's relatively simple to make CSS-based layout work for IE6, IE7, and FF3, which are my target browsers for design. I make sure all my sites work well on all three and it doesn't take much extra work at all. I use conditional stylesheets for all browser-specific tweaks, so that once a browser's

[jQuery] Re: New jQuery Website...

2008-09-08 Thread Rick Faircloth
lmost everywere... this is 2 IE7's and 1 IE6's on 3 pcs... > I'd give a url but ... well it's almost everywhere... cool idea > though... > > On Sep 8, 10:03 am, "Rick Faircloth" <[EMAIL PROTECTED]> wrote: > > Yes, it does look great! > >

[jQuery] Re: New jQuery Website...

2008-09-08 Thread Rick Faircloth
Yes, it does look great! Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Jordan Sent: Monday, September 08, 2008 12:58 PM To: jQuery Group Subject: [jQuery] New jQuery Website... I really like the look of the new jQuery website. When did it get launch

[jQuery] Re: jQuery Forum

2008-08-30 Thread Rick Faircloth
No Email is better! Email is better! Email is better! :o) Rick PS - Rey, I just saw that idea you were throwing around about forums fly out the window... > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey > Bango > Sent: Saturday,

[jQuery] Re: Best practices for including Jquery

2008-08-25 Thread Rick Faircloth
Sounds like a really good idea. Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of > GasGiant > Sent: Monday, August 25, 2008 9:49 AM > To: jQuery (English) > Subject: [jQuery] Re: Best practices for including Jquery > > > I load site w

[jQuery] Re: New CF programmer - anxious to start using jQuery

2008-08-20 Thread Rick Faircloth
Hi, larksys... I'm a CF programmer, too, and jQuery has been my first experience with coding javascript. I haven't been able to make use of a lot of it, simply because I don't have time to spend on getting it to work...not that getting it to work is a problem in general, I'm just new and I've

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Rick Faircloth
Thanks for the tips, Joel. When I first implemented SuperFish on this site, it was my first use and I wasn't sure what bgiframe.js was for exactly, so I included it just to be safe. (I just didn't take the time to read...) Now that I know what it's for, I realize I don't need it to overcome IE6

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Rick Faircloth
Hi, Joel... congrats on the new version. I've been working with the 1.4.1 version of Superfish for awhile on a new site and I have put 24-bit png's as the background images for the menu items (not the main items, just in the dropdowns) all was working fine for months. Then all of a sudden, in IE

[jQuery] Re: Shadowbox 2.0rc1

2008-07-02 Thread Rick Faircloth
I don't see why you can't download the free version for testing and then demo it to your boss. If he/she wants it, $20 can be found. (And if your boss can't find $20 extra dollars, you might want to abandon that sinking ship! One less pizza and you've got a great plug-in! :o) Rick > -Origin

[jQuery] Re: jQuery powered Plazes acquired by Nokia

2008-06-23 Thread Rick Faircloth
Yes, congratulations, Klaus! Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ariel > Flesler > Sent: Monday, June 23, 2008 10:31 AM > To: jQuery (English) > Subject: [jQuery] Re: jQuery powered Plazes acquired by Nokia > > > You're d

[jQuery] Re: [ANNOUNCE] New Plugin: Magnify

2008-05-30 Thread Rick Faircloth
Looks great, Josh... I will certainly be giving this a try! Thanks for the work! Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh > Nathanson > Sent: Friday, May 30, 2008 1:49 PM > To: jquery-en@googlegroups.com > Subject: [jQuery]

[jQuery] Re: extending a jmaps Google map

2008-05-13 Thread Rick Faircloth
I'm getting an error on the page... > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of > Quinode > Sent: Tuesday, May 13, 2008 4:27 AM > To: jQuery (English) > Subject: [jQuery] extending a jmaps Google map > > > I used jmaps on this page : >

[jQuery] Re: Way to designate links as form submitters?

2008-05-05 Thread Rick Faircloth
So why not something like this? > > $(document).ready(function(){ > $('a.formlink').click(function(){ > $(this).parents('form').submit(); > return false; > }); > }); > > This way you can have multiple forms on the page if needed. > > On May 2, 12:48 pm,

[jQuery] Re: Way to designate links as form submitters?

2008-05-02 Thread Rick Faircloth
Well... the original plan was to use the pagination links on the page to submit the form fields. That way a user could change the search options and just continue clicking the pagination links instead of "submitting" the new options. However, I believe this might be confusing, so I created a "C

[jQuery] Re: Way to designate links as form submitters?

2008-05-01 Thread Rick Faircloth
tsupport ( selectedtype ) { document.supportform.supporttype.value = selectedtype ; document.supportform.submit() ; } --> Paid Support or Free Support Thanks for any help in changing this to jQuery! Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick &

[jQuery] Way to designate links as form submitters?

2008-05-01 Thread Rick Faircloth
Anyway to do that? Have certain links, say with an id of "link", to be programmed to submit a form when clicked? Rick

[jQuery] Re: Need some advice on how to proceed...

2008-04-30 Thread Rick Faircloth
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ripple Sent: Wednesday, April 30, 2008 1:27 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Need some advice on how to proceed... Why couldn't save the clicked values in a session cookie? Rick Fairclo

[jQuery] Need some advice on how to proceed...

2008-04-30 Thread Rick Faircloth
Hi, all... I've got a "Browse Properties" page on a real estate website. You can see the page in question here: http://c21ar.wsm-dev.com/cfm/browse-properties.cfm On the page at the top of the listings, I have checkboxes for property type options for browsing. I want the user to be able to che

[jQuery] Re: [ANNOUNCE] New Twitter Account for jQuery & jQuery UI Projects

2008-04-30 Thread Rick Faircloth
word > out about jQuery. Remember that part of the team is dedicated to > evangelism efforts so we won't be thinning ourselves out. > > Rey... > > Rick Faircloth wrote: > > Thanks, Jason... just wanted to make sure I wasn't getting "left out > > of the loop" or had to subscribe to yet *another* source of info... > > > > Rick > >

[jQuery] Re: [ANNOUNCE] New Twitter Account for jQuery & jQuery UI Projects

2008-04-30 Thread Rick Faircloth
ion is currently in place or planned, but > it might be nice to set it up to auto-announce new additions to the > plugin repository, new posts at planet.jquery.com, etc. > > - jason > > > > > > On Apr 30, 8:05 am, "Rick Faircloth" <[EMAIL PROTECTED]> wrot

[jQuery] Re: [ANNOUNCE] New Twitter Account for jQuery & jQuery UI Projects

2008-04-30 Thread Rick Faircloth
Hi, Rey... First, a disclaimer... I'm not a Twitter user, so I don't "get it", as I've heard Twitter users say of no-users. :o) That being said, I wanted to ask why another source of info, beyond the jquery.com site, the ton of individual plug-in sites, doc sites, etc, is needed. It seems that

[jQuery] Re: should be using .find . . .

2008-04-21 Thread Rick Faircloth
be using .find . . . > > > Hi Rick, > > No, I am not using this an an include. This is to pull content from > my server, but filter the results. The footer ID is just being used > an a working example I am making, it won't be the final. > > On Apr 21, 6:17 am, "Rick Fai

[jQuery] Re: should be using .find . . .

2008-04-21 Thread Rick Faircloth
It seems he's trying to use an ajax function in place of an include for the footer. > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of > Nicolas R > Sent: Monday, April 21, 2008 3:52 AM > To: jQuery (English) > Subject: [jQuery] Re: should be

[jQuery] Re: Anyone have trouble viewing this site on Vista?

2008-04-18 Thread Rick Faircloth
rrect layout as well. So the problem is when you land on your site. Download Opera 9 from www.opera.com and test it. Maybe others reading this can test it too. I'm pretty sure Opera is working OK on mine, seems to display every other site ok. Weird eh :). Chris. Rick Faircloth wrote:

[jQuery] Re: Anyone have trouble viewing this site on Vista?

2008-04-17 Thread Rick Faircloth
r and > footer. Just to re-cap. if I refresh the page it still looks like it > does in the screen shots. If I press any link (including home) on the > top navigation bar it re-loads the page as it should - looks perfect. > > Chris. > > > Rick Faircloth wrote: > >

[jQuery] Re: Anyone have trouble viewing this site on Vista?

2008-04-17 Thread Rick Faircloth
> > > looks fine on my machine > > On Apr 16, 12:02 pm, "Rick Faircloth" <[EMAIL PROTECTED]> > wrote: > > Hi, all.. > > > > I was attempting to demo this site and show off > > the Cycle plug-in to a prospective client, but the > >

[jQuery] Re: Anyone have trouble viewing this site on Vista?

2008-04-17 Thread Rick Faircloth
site but very slow loading (on a 1mb broadband connection UK). > Dont know if thats because its on dev space. > > Chris. > > > On Apr 16, 8:02 pm, "Rick Faircloth" <[EMAIL PROTECTED]> wrote: > > Hi, all.. > > > > I was attempting to demo thi

[jQuery] Re: Anyone have trouble viewing this site on Vista?

2008-04-17 Thread Rick Faircloth
hishing/security/anti-virus software that's delaying the request > for the images ? > > L > > Rick Faircloth wrote: > > Hi, all.. > > > > I was attempting to demo this site and show off > > the Cycle plug-in to a prospective client, but the > > Cyc

[jQuery] Anyone have trouble viewing this site on Vista?

2008-04-16 Thread Rick Faircloth
Hi, all.. I was attempting to demo this site and show off the Cycle plug-in to a prospective client, but the Cycle plug-in was acting very strangly... flickering, not showing images, etc. The other plug-ins were working properly. The client's laptop runs Vista. Anyone with Vista care to look a

[jQuery] Re: How do I use ColdFusion and jQuery variables for pagination?

2008-04-13 Thread Rick Faircloth
plugin that you're using works, but > > there may be some sort of "before" event that you can use to ajax some > > variables to your CF page. Your CF template would take these variables and > > use them to set the startrow and maxrow values and then send back the > >

[jQuery] Email is coming again...

2008-04-11 Thread Rick Faircloth
Hi, all... I did begin to receive jQuery email again. I recently changed hosts for my email and the DNS change didn't get to Google for a couple of days and so my address was bouncing emails. So, they cut me off. I emailed the list owner and received an email from Google Groups with a link to

[jQuery] How do I use ColdFusion and jQuery variables for pagination?

2008-04-10 Thread Rick Faircloth
Hi, all... I'm a bit confused about how to get variables from jQuery that I can use in my ColdFusion code. In typical CF pagination, I use startrow and maxrows variables to limit the query output. How would I get these variables from the jQuery? I just can't piece together what's happening. B

[jQuery] Re: click on a link and have a table appear - can't get it to work

2008-04-05 Thread Rick Faircloth
Let's make a few adjustments to your code and see what happens... First (and something I used to forget when I first started), do you have your jquery referenced in the head section of your document? Now, the jquery... try this: $(document).ready(function() { $('#col1'

[jQuery] Re: flickering side effect in IE 7

2008-04-03 Thread Rick Faircloth
Don't know if this will help your situation or not, but I had some flickering problem with a simple slide toggle, which sounds similar to what you're describing. The solution was to set a min-height for the container of the div's. Give height declaration a try and see if that helps. Rick > ---

[jQuery] Re: (Bump) Why is this slide so jittery?

2008-03-28 Thread Rick Faircloth
ional comment, it might help with your IE6 jitter > > > > > > --Karl > _ > Karl Swedberg > www.englishrules.com > www.learningjquery.com > > > > On Mar 28, 2008, at 5:04 PM, Rick Faircloth wrote: > > > > > I'm gl

[jQuery] Re: (Bump) Why is this slide so jittery?

2008-03-28 Thread Rick Faircloth
ry? > > > My guess is that it's trying to determine the height dynamically. You know > the height of the container, try setting that in your CSS (same as the > picture height I'd guess). > > 10 to 1 says that fixes it. > > -Original Message----- > From:

[jQuery] (Bump) Why is this slide so jittery?

2008-03-28 Thread Rick Faircloth
Anyone? Hi, all... Thought I had this solved, but would anyone care to take a look at this page: http://c21ar.wsm-dev.com/cfm/our-agents.cfm And click on the "Click here to view or hide agent's biography" link? FF2 doesn't have the jitters. The top agent's bio slides in smoothly. Any agen

[jQuery] Re: Calling all jQ & CF users...

2008-03-28 Thread Rick Faircloth
7;t click the link to create it, since it looks like it's hardcoded in the html (the name="image-upload-2")? - Jack Rick Faircloth wrote: Hi, all. Well, I'm still on the path of trying to create a file input cloning system, with CF as the server-side processor. I'

[jQuery] Re: Anyone willing to take a look and see why this is happening?

2008-03-28 Thread Rick Faircloth
bject: [jQuery] Re: Anyone willing to take a look and see why this is happening? Works just fine in FF. What browser(s) are you having problems with? Rick Faircloth <[EMAIL PROTECTED]> wrote: Hi, all... Got some strange sliding going on. Here's the link: http://c21ar.wsm

[jQuery] Why is this slide so jittery in IE 7?

2008-03-27 Thread Rick Faircloth
Hi, all... Thought I had this solved, but would anyone care to take a look at this page: http://c21ar.wsm-dev.com/cfm/our-agents.cfm And click on the "Click here to view or hide agent's biography" link? FF2 doesn't have the jitters. The top agent's bio slides in smoothly. Any agent's bio for

[jQuery] Re: Anyone willing to take a look and see why this is happening?

2008-03-27 Thread Rick Faircloth
: firebug reports a 404 error for "http://c21ar.wsm-dev.com/cfm/ > images/loading.gif" > > > > > > On Mar 27, 9:45 pm, "Rick Faircloth" <[EMAIL PROTECTED]> wrote: > > Hi, all... > > > > Got some strange sliding going on. > >

[jQuery] Re: Anyone willing to take a look and see why this is happening?

2008-03-27 Thread Rick Faircloth
alf Of Rick > Faircloth > Sent: Thursday, March 27, 2008 9:46 PM > To: jquery-en@googlegroups.com > Subject: [jQuery] Anyone willing to take a look and see why this is happening? > > > Hi, all... > > Got some strange sliding going on. > > Here's the

[jQuery] Anyone willing to take a look and see why this is happening?

2008-03-27 Thread Rick Faircloth
Hi, all... Got some strange sliding going on. Here's the link: http://c21ar.wsm-dev.com/cfm/our-agents.cfm Click on the "Click here to view or hide agent's biography" link. The top bio slides and hides nicely. The others are just spastic. The jQ controlling this is:

<    1   2   3   4   5   6   7   8   9   10   >