[jQuery] Re: Callback Not Working

2009-08-24 Thread Aaron Gundel
Hi George, It appears that your code isn't working because the context of your this pointer changes in the callback inside of your fadeout effect. it becomes your section title. So when you do a find on it, you find only children of the section title that are of the class explanation -- which

[jQuery] Re: urgent json parsing error!!!! very important

2009-06-06 Thread Aaron Gundel
My guess is that you're not building an extension for twitter that will run on their site, so you're violating the cross domain request rule. You cannot directly request from twitter.com, you'd have to proxy through a page on your site (some page that forwarded this request to twitter and

[jQuery] Re: Complicated setup help.

2009-06-05 Thread Aaron Gundel
Hi Dave, It appears that your method signature for attr function is incorrect. See http://docs.jquery.com/Attributes for details (Looks like you're passing in an anonymous function as the third parameter of the attr function...this won't work. You'd need to pass it in as the second value --

[jQuery] Re: jquery.ui.cascade null/not an object/undefined, etc etc.

2009-06-05 Thread Aaron Gundel
Is it possible to include some more code with this? It's difficult to tell what's going on when we can't see the source. Thanks. On Fri, Jun 5, 2009 at 2:11 PM, lysholmtaylorjperk...@gmail.com wrote: So I'm sure I'm just missing something simple, but I'm having a problem with the cascade

[jQuery] Re: document.body is null or is not an object

2009-06-05 Thread Aaron Gundel
What is your doctype for the page? strict doctypes will render under document.documentElement rather than document.body. Not sure if there's any particular reason you're doing it this way though. It would probably be much simpler to do something like jQuery(body).append(div /) On Fri,

[jQuery] Re: What can we use in place of $.browser?

2009-02-25 Thread Aaron Gundel
http://docs.jquery.com/Utilities/jQuery.support jQuery now uses feature detection. There are some good links to explain in the post above. It is still possible to detect which browser is being used (plain old js) but jQuery support will probably be removed at some point in the future. On Wed,

Re: FW: [jQuery] Re: Returning Javascript

2009-02-17 Thread Aaron Gundel
eval is only for javascript. You cannot eval the whole response. If you want to put javascript in other files, it is possible to load them dynamically at runtime. See the following for more information about On-Demand Javascript... It's foundational to several other concepts floating around on

[jQuery] Re: Using jQuery Validation with Dot Net

2009-02-11 Thread Aaron Gundel
this! Thanks On Feb 9, 3:10 pm, Aaron Gundel aaron.gun...@gmail.com wrote: Yes, it would be helpful. Can't really see what's going on in the snippet you provided. As Rob mentioned, there's no mention of the form (even though it is there on the page). It might give some additional clues

[jQuery] Re: Using jQuery Validation with Dot Net

2009-02-09 Thread Aaron Gundel
Yes, it would be helpful. Can't really see what's going on in the snippet you provided. As Rob mentioned, there's no mention of the form (even though it is there on the page). It might give some additional clues as to where things have gone wrong. On Mon, Feb 9, 2009 at 3:46 AM, Jon

[jQuery] Re: test for css selector capability?

2009-02-09 Thread Aaron Gundel
jQuery.browser is deprecated in 1.3 + (don't use it). JQuery now uses feature detection. This is a more extensible way of detecting which browser is being utilized. See the following page for more details... http://docs.jquery.com/Utilities/jQuery.support On Mon, Feb 9, 2009 at 4:02 AM,

[jQuery] Re: [tooltip]

2009-02-09 Thread Aaron Gundel
Hey there, in your tooltip div, add the style... white-space: nowrap; This will cause your text to appear on the same line. Hope this helps, Aaron On Mon, Feb 9, 2009 at 6:00 PM, sccr410 de...@ashwebstudio.com wrote: Having issues with the tooltip plugin -

[jQuery] Re: hide()

2009-02-08 Thread Aaron Gundel
http://www.w3.org/TR/html4/struct/global.html#adef-id HTML standards state that the id attribute should be unique in an html document. Use class or somesuch. Then you can do something like $(.trContactInfo).hide() and it will hide everything. A. Gundel On Sun, Feb 8, 2009 at 1:30 PM,

[jQuery] Re: Using jQuery Validation with Dot Net

2009-02-08 Thread Aaron Gundel
Do you have an internet facing page set up to view this? On Sun, Feb 8, 2009 at 2:30 PM, Jon cakeordeat...@gmail.com wrote: I'm having issues getting the validation plugin (http://bassistance.de/ jquery-plugins/jquery-plugin-validation/) to work with dot net. Whatever i try i can't stop the

[jQuery] Re: simple checkbox and display text problem

2009-02-07 Thread Aaron Gundel
Bob, Not sure exactly what you're trying to do here. You might wish to elaborate more. However, I can already tell you that you're going to have issues with putting out multiple spans with the same id. You should use a class or some other attribute to store the identification information.

[jQuery] Re: Superfish Help

2009-02-05 Thread Aaron Gundel
if you're logged in? On Thu, Feb 5, 2009 at 5:32 PM, Josh joshua.d.mich...@gmail.com wrote: Hello, I have installed the Superfish module and can get it to display on my site, but I can't seem to get the drop-down to look good. In fact it looks pretty awful. Any help would be great.

[jQuery] Re: Select empty textbox fields

2009-02-04 Thread Aaron Gundel
$(#%= this.pnlInputFields.ClientID % input[class='inputFields']:not([value])).toggleClass('inputFields_empty'); should do the trick. On Tue, Feb 3, 2009 at 2:57 PM, brnwdrng brianwoodr...@gmail.com wrote: I have a set of text box inputs in a div, and want to color the empty ones red (css)

[jQuery] Re: Select empty textbox fields

2009-02-04 Thread Aaron Gundel
for the help! On Feb 4, 7:22 am, Aaron Gundel aaron.gun...@gmail.com wrote: $(#%= this.pnlInputFields.ClientID % input[class='inputFields']:not([value])).toggleClass('inputFields_empty'); should do the trick. On Tue, Feb 3, 2009 at 2:57 PM, brnwdrng brianwoodr...@gmail.com wrote

[jQuery] Re: setting focus to the first empty field

2009-02-04 Thread Aaron Gundel
Something like this, perhaps? $(input :not([value])).focus() On Wed, Feb 4, 2009 at 11:57 AM, Massiverse august.massive...@gmail.com wrote: Hello I'm a newbie, here's what I need to do (searched the forums first but couldn't find the answer). 1. Search form for an empty input field. 2.

[jQuery] Re: Select empty textbox fields‏

2009-02-03 Thread Aaron Gundel
Hey Brian, Try this for a... $(#%= this.pnlInputFields.ClientID % input[class='inputFields']:not([value])).toggleClass('inputFields_empty'); A. Gundel

[jQuery] Re: Can't select an id containing '/' ? ‏

2009-02-02 Thread aaron . gundel
http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_characters_in_its_ID.3F This is what you're looking for... $('#\\/about\\/')