[jQuery] Re: Alter Status Message

2007-12-11 Thread Matt Quackenbush
@ Josh, Dave - thanks for pointing out that I had missed the 2nd function. Dave, thanks also for pointing out the disabling of the status bar stuff. I hadn't paid attention to that before. Kinda makes what I was trying to do pointless, which is always good to know before one spends hours and

[jQuery] ClueTip: topOffset + width

2007-12-28 Thread Matt Quackenbush
Hello, I am using the ClueTip plugin for the first time, and I'm loving it. However, I am having difficulty with positioning whenever I supply both 'topOffset' and 'width' as arguments. One without the other works just fine, but together, 'topOffset' is totally ignored.

[jQuery] Re: jQuery Tabs - Can I Do This?

2008-01-05 Thread Matt Quackenbush
Klaus, thank you very much for your input and thoughts on the topic, as well as the link. Interesting reading, indeed. I shall most definitely give more thought to the task at hand. Stephen, thanks also for the potential solution. I sincerely appreciate it. jQuery is awesome, and this list is

[jQuery] Manipulate Element After Being Added to DOM

2008-01-20 Thread Matt Quackenbush
Hello, I'm working on a form that allows the user to click an Add an Item button in order to add another item to their order. When this button is clicked, I have jQuery add another couple of fields to the form, so the user can input the data. Along with the added form fields, a Remove This Item

[jQuery] RE: Manipulate Element After Being Added to DOM

2008-01-20 Thread Matt Quackenbush
Okay, in my continued pursuit of finding out what I've done wrong, I hard-coded into the html a block identical to the one that jQuery adds to the DOM via the Add an Item link/button. When using this, my Remove this Item button/link works perfectly. In addition, I am using the Highlighter plugin

[jQuery] Re: Manipulate Element After Being Added to DOM

2008-01-20 Thread Matt Quackenbush
Karl, Thank you, thank you, thank you, thank you, thank you, and THANK YOU! By the way, in case I forgot, please, let me be sure to say Thank you! before signing off. Thanks, Matt On Jan 20, 2008 9:53 PM, Karl Rudd wrote: You might like to look at the LiveQuery plugin (

[jQuery] UI Dialog

2008-01-22 Thread Matt Quackenbush
Hello, I'm trying to get the UI Dialog box implemented in a couple of the items that I am currently working on, but am apparently doing something incorrectly. Here's the relevant code that I'm testing... link href=css/core.css type=text/css rel=stylesheet media=all / link

[jQuery] Re: UI Dialog

2008-01-22 Thread Matt Quackenbush
Okay, I officially feel like an ID10T. body *class=flora* Amazing how important the *^@^*#$% tiny details are. Thanks, Matt

[jQuery] Radio Buttons and .val()

2008-01-23 Thread Matt Quackenbush
Hello, I am using the following to grab the value of a radio button: str = $(input[name='addType']).val(); The XHTML for the radio button is as follows: label for=add-type-1input type=radio name=addType id=add-type-1 value=prem /nbsp;Premium/label label for=add-type-2input type=radio

[jQuery] Re: Radio Buttons and .val()

2008-01-23 Thread Matt Quackenbush
On Jan 23, 2008 3:22 AM, Matt Quackenbush wrote: str = $(input[name='addType']).val(); Why is it that I always find the answer just after I send the email? God knows I hate that. Sorry guys. str = $(input[name='addType']:checked).val(); Thanks again, Matt

[jQuery] Re: Radio Buttons and .val()

2008-01-23 Thread Matt Quackenbush
@Timothee, Giovanni - Thank you for your responses. It really annoys the hell out of me that Gmail and Google Groups both delayed your messages until I had already found the answer in the docs, and yet the timestamps are long before they showed up. I even blogged about it (link below).

[jQuery] Re: Feb 12 IE6 Forced Update

2008-01-24 Thread Matt Quackenbush
On Jan 24, 2008 8:21 AM, Andy Matthews wrote: I personally have put off installing it IE7 at home so that I can still test with IE6. Andy, If you want to be able to test with IE6 and IE7 on the same machine, check out the following link. http://tredosoft.com/Multiple_IE I've been using

[jQuery] Re: .::: New Social Networking Site :::.

2008-01-24 Thread Matt Quackenbush
God I hate spam.

[jQuery] Re: $(this) and bind()? Noobish questions...

2008-01-24 Thread Matt Quackenbush
Micky, On .bind(), I'm afraid I'm in the same boat as you; total n00b, so I'm afraid I can't offer much help there. On the child selection, the selector that immediately comes to mind is parent child. I could be mistaken, but I don't think you'll be able to use 'this', as it is a reference to

[jQuery] Re: Is there a .new() ?

2008-01-25 Thread Matt Quackenbush
David, Thanks for the reply. I had no idea that a new element could be created as you've shown. That's pretty cool, from a code standpoint. But if it's faster the way I've been doing it, I'll continue in that fashion. Matt

[jQuery] Re: Is it possible to do this with Jquery?

2008-01-28 Thread Matt Quackenbush
http://plugins.jquery.com/project/cycle On Jan 27, 2008 11:07 PM, cameron wrote: I'm wondering if this is possible to do with jquery. An example of what I'm looking for can be found at the top of this page; http://www.scriptsearch.com/cgi-bin/jump.cgi?ID=687 The images are scrolling

[jQuery] Re: how to get name attribute from $(this)

2008-01-28 Thread Matt Quackenbush
$(this).attr('name'); I think that's what you're looking for?

[jQuery] Re: attr('form') not work in firefox

2008-05-18 Thread Matt Quackenbush
Unless I'm completely misunderstanding something here, that code should not work in any browser. There is no form attribute on an input / element. What are you actually trying to accomplish? On Sun, May 18, 2008 at 8:22 PM, wrote: This is my html: form id=myForm action= input type=text

[jQuery] Validation Plugin Mod

2008-06-01 Thread Matt Quackenbush
Hello, I am working with Jorn's most excellent form validation plugin ( http://bassistance.de/jquery-plugins/jquery-plugin-validation/), making an attempt to modify it for use with the Uni-Form markup ( http://dnevnikeklektika.com/uni-form/). I have made several changes and am mostly there, but

[jQuery] Re: Validation Plugin Mod

2008-06-01 Thread Matt Quackenbush
I'm 99.9% certain that I have correctly deduced that the reason for the continued addition of the error messages to the DOM is that the errorsFor: function() [see below] is not finding the ones that have been added already. errorsFor: function(element) { return

[jQuery] Re: Validation Plugin Mod

2008-06-01 Thread Matt Quackenbush
Okay, problem #2 from the original post has been solved. I finally found the .errors() function and was able to modify it to suit my purposes. Any ideas on how to solve problem #1 would be much appreciated. :-) Thanks, Matt

[jQuery] Re: Validation Plugin Mod

2008-06-01 Thread Matt Quackenbush
All fixed up. :-) Thanks to Jorn for an awesome plugin!

[jQuery] Validate Plugin Exceptions

2008-06-10 Thread Matt Quackenbush
Hello, For some reason I am receiving the following two errors in Firebug when attempting to load a form that makes use of the Validation plugin. I am using this in a number of places without any errors, so this has me a bit confused. I even commented out all of the form fields and any other

[jQuery] Re: Validate Plugin Exceptions

2008-06-10 Thread Matt Quackenbush
Jorn, All I can say is thank you, and I feel like a complete moron. I had mistakenly read it as 1.2.6 in the document head, when in fact that particular application was using 1.2.1. Thank you very much for your keen eye. Problem fixed. Thanks again, Matt On Tue, Jun 10, 2008 at 4:51 PM,

[jQuery] selectChain Plugin - Fires on Page Load

2008-12-09 Thread Matt Quackenbush
Hello, I am using Remy's most excellent selectChain plugin ( http://remysharp.com/2007/09/18/auto-populate-multiple-select-boxes/), but I do not want it to fire on page load, unless the top level select box has a pre-selected value. I've tried a couple of ways to create that functionality, but I

[jQuery] Re: selectChain Plugin - Fires on Page Load

2008-12-10 Thread Matt Quackenbush
Bump. :-) On Tue, Dec 9, 2008 at 8:04 PM, Matt Quackenbush wrote: Hello, I am using Remy's most excellent selectChain plugin ( http://remysharp.com/2007/09/18/auto-populate-multiple-select-boxes/), but I do not want it to fire on page load, unless the top level select box has a pre

[jQuery] Re: selectChain Plugin - Fires on Page Load

2008-12-12 Thread Matt Quackenbush
Bump (again). :-) Is my question that difficult, or just that stupid? ;-) On Tue, Dec 9, 2008 at 8:04 PM, Matt Quackenbush wrote: Hello, I am using Remy's most excellent selectChain plugin ( http://remysharp.com/2007/09/18/auto-populate-multiple-select-boxes/), but I do not want

[jQuery] Re: Noob Q. Can't get jQuery working

2009-01-01 Thread Matt Quackenbush
Probably because the path to jQuery is incorrect and therefore jQuery is not actually loaded. On Thu, Jan 1, 2009 at 5:26 AM, spstieng wrote: Now, clicking Test B links dislays the 'Hello World' alert. But nothing happends when I click Test A. Why is that?

[jQuery] Re: In this code, what would $(this) in the success part refer to?

2009-01-13 Thread Matt Quackenbush
Has it ever occurred to you that maybe, just maybe, people are sick and tired of helping you when you refuse to help yourself? On Tue, Jan 13, 2009 at 10:32 PM, Rick Faircloth wrote: This is a completely different part of the problem. The other parts have been solved, but I couldn't make

[jQuery] Re: In this code, what would $(this) in the success part refer to?

2009-01-13 Thread Matt Quackenbush
On Tue, Jan 13, 2009 at 10:54 PM, Rick Faircloth wrote: If you are sick and tired of helping me, then don't. I don't remember having any contract with you. You couldn't afford a contract with me. And, fyi, I do help myself…I do read the docs and search for blogs, tutorials etc.

[jQuery] Re: In this code, what would $(this) in the success part refer to?

2009-01-14 Thread Matt Quackenbush
Just to be clear, I'm kinda doubting that anyone has an issue with n00b questions. I believe what people take exception to is the exact same person asking the exact same type of questions over and over and over and over again (for years, even), with the expectation of someone else writing all of

[jQuery] Re: jQuery w ajaxCFC

2009-02-13 Thread Matt Quackenbush
cflib.org has a UDF that should do the trick for you. I think it's called serializeJSON(). Might want to give that a shot. On Fri, Feb 13, 2009 at 10:06 PM, Neil Bailey wrote: We're using CF7, which doesn't support a returntype of JSON - I wish. I am looking into simply returning a

[jQuery] Re: Ajax tabs in non JavaScript browsers

2009-02-21 Thread Matt Quackenbush
The 'j' in Ajax is 'JavaScript'. Bottom line is, if the browser has JavaScript disabled, you cannot use Ajax.

[jQuery] Re: $.getJSON

2009-03-02 Thread Matt Quackenbush
Yes. On Mon, Mar 2, 2009 at 3:35 AM, Alain Roger wrote: Hi Wil, so if i understood well, having the following JSON: {records:[{id:1,abbreviation:fre,description:french},{id:2,abbreviation:eng,description

[jQuery] Re: jQuery.com homepage News from the jQuery Blog not up to date?!

2009-03-11 Thread Matt Quackenbush
jQuery 1.3.1 Released, dated January 21st is the latest one that I see. On Wed, Mar 11, 2009 at 11:16 PM, jQuery Lover wrote: Mine is up to date... the latest news is about jquery ui 1.7 release... Anyone with similar problems ?

[jQuery] Re: Ticket: [1758-5724031711]

2009-03-24 Thread Matt Quackenbush
John, I'm not the offender, but he did apologize and explain. http://groups.google.com/group/jquery-en/browse_thread/thread/c661f1f17c5d374b HTH On Tue, Mar 24, 2009 at 5:28 PM, John Resig wrote: Uhhh... why were there like 30 of these submitted to the mailing list? Your email address has

[jQuery] Re: jQuery and Ruby on Rails

2009-04-03 Thread Matt Quackenbush
jQuery is client side. Ruby is server side. jQuery (or any JavaScript) is completely incapable of setting a Ruby (or any server-side language) variable. However, you can use jQuery's $.ajax() method to send an asynchronous request to the server, passing along the variable value. Check the

[jQuery] Re: [validate] Either this field OR this field OR both

2009-04-08 Thread Matt Quackenbush
pseudocode rules : { thisField : { depends: function(element) { return $('#thatField').length == 0; } } thatField : { depends: function(element) { return $('#thisField').length == 0; } } } /pseudocode

[jQuery] Re: [validate] Either this field OR this field OR both

2009-04-08 Thread Matt Quackenbush
Ooops... pseudocode rules : { thisField : { required: true, depends: function(element) { return $('#thatField').length == 0; } } thatField : { required: true, depends: function(element) { return

[jQuery] Re: jquery .noconflict

2009-06-29 Thread Matt Quackenbush
Straight from the docs http://docs.jquery.com/Core/jQuery.noConflict *NOTE:* This function must be called after including the jQuery javascript file, but *before* including any other conflicting library, and also before actually that other conflicting library gets used, in case jQuery is

[jQuery] Re: jquery .noconflict

2009-06-29 Thread Matt Quackenbush
That is exactly what it means.

[jQuery] Re: validation: how do I make sure a radio button is picked?

2009-09-02 Thread Matt Quackenbush
Perhaps I am misunderstanding something in your requirements, but with the validation plugin (link below), it is as simple as adding class=required to the input tag. http://docs.jquery.com/Plugins/Validation HTH

[jQuery] Re: jQuery in loaded content doesn't work

2009-09-23 Thread Matt Quackenbush
If you're using jQuery 1.3.x (and you should be), there's no need for the livequery plugin. http://docs.jquery.com/Events/live

[jQuery] Re: jQuery in loaded content doesn't work

2009-09-23 Thread Matt Quackenbush
My bad. I must admit that I did not read through the entire post, and also did not realize that the livequery plugin offered additional functionality. I was under the impression that it had been fully included into the core with live(). However, I have been corrected a couple of times after

[jQuery] Re: Ajax problem on Safari/Chrome browsers

2009-09-26 Thread Matt Quackenbush
That code should not work on _any_ browser. In the onclick attribute you are grqbbing a reference to the containing div ($ ('#followButton2')), which clearly has no method named followUser. Try something like this instead: script $(document).ready(function(){ $('div

[jQuery] Re: Ajax problem on Safari/Chrome browsers

2009-09-26 Thread Matt Quackenbush
@ Mike - Thanks for making me take a closer look at the original code. I get it now. My bad. /me crawls back into his cave to hibernate some more

[jQuery] Re: been asked 1000 times?

2009-09-26 Thread Matt Quackenbush
Use class instead of id. $('.open-frame') div class=open-frame

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

2009-10-10 Thread Matt Quackenbush
Add a ) to the end. You have to close the opening hover() function call.

Re: [jQuery] jQuery only works in offline files?!

2009-11-08 Thread Matt Quackenbush
I'm going to say that there is about a 99.99% chance that the paths to your CSS and jQuery files are incorrect.

Re: [jQuery] jquery form...

2009-11-09 Thread Matt Quackenbush
Why? Simple. Because the variable does not exist. :D On Mon, Nov 9, 2009 at 7:09 PM, Lord Gustavo Miguel Angel wrote: hi. i´m try with this example: http://www.malsup.com/jquery/form/#json but Alert(data.message) return undefinited why? tk-.

[jQuery] iTunes Style Slider

2010-01-05 Thread Matt Quackenbush
Hello, I found an iTunes style slider/rotator that has been done in blasphemyMooTools/blasphemy, demoed here: http://www.outcut.de/MooFlow/example-ajax.html. I was wondering if either a) such a thing already existed in a jQuery plugin, or b) if there was a jQuery master who could port it in

Re: [jQuery] Re: iTunes Style Slider

2010-01-06 Thread Matt Quackenbush
Z, thanks for the reply. I found that project yesterday after I had posted. I also found a couple of others. The problem is that they either a) only work in Firefox (like the one you found) or b) are not full-featured like the MooTools one. The closest I have found - which seems to be the only

Re: [jQuery] New Forums

2010-01-16 Thread Matt Quackenbush
I concur regarding mailing list vs. forum. Both have their positives and negatives, but these days I definitely prefer a mailing list over forums. Perhaps the jQuery team could not find another mailing list that would import all of the existing posts on Google Groups? (My understanding is that

Re: [jQuery] how to get href value

2010-01-19 Thread Matt Quackenbush
$(a).attr(href);

Re: [jQuery] class={title:'test'}

2010-01-20 Thread Matt Quackenbush
This is utilizing the metadata plugin for jQuery. It handles that sort of stuff. Sent from my iPhone On Jan 20, 2010, at 3:34, fran23 f...@lavabit.com wrote: I don't know how to handle class={title:'test'} it's out of the mb.extruder plugin div id=extruderLeft class={title:'test'}

Re: [jQuery] New Forums

2010-01-21 Thread Matt Quackenbush
Well stated, Shawn. I wholeheartedly concur.