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 do
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 returne
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("")
On Fri, Jun
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, lysholm wrote:
>
> So I'm sure I'm just missing something simple, but I'm having a
> problem with the cascade plug in. When debugging
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 -- this
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,
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
gt; further luck solving this!
>
> Thanks
>
> On Feb 9, 3:10 pm, Aaron Gundel 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 t
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 wrote:
>
> Having issues with the tooltip plugin -
> http://bassistance.de/jquery-plugins/jquery-plugin-
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, Mohd.T
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 wrote:
>
Do you have an internet facing page set up to view this?
On Sun, Feb 8, 2009 at 2:30 PM, Jon 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 form from submitting
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,
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.
Aar
if you're logged in?
On Thu, Feb 5, 2009 at 5:32 PM, Josh 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. You can see it at
> e
Something like this, perhaps?
$(input :not([value])).focus()
On Wed, Feb 4, 2009 at 11:57 AM, Massiverse 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. If an empty field ex
g it:
>>
>> > $("#<%= this.pnlInputFields.ClientID %> input").removeClass
>> > ('inputFields_empty');
>> > $("#<%= this.pnlInputFields.ClientID %> input
>> > [class='inputFields']").each(function(i) { $(th
$("#<%= 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 wrote:
>
> I have a set of text box inputs in a div, and want to color the empty
> ones red (css) when a user attempts
Hey Brian,
Try this for a...
$("#<%= this.pnlInputFields.ClientID %>
input[class='inputFields']:not([value])").toggleClass('inputFields_empty');
A. 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\\/')
20 matches
Mail list logo