Be cool Matt. He's new to the jQuery family and he has a tech question 
so it behooves everyone to help in answering the question instead of 
telling him to start a new thread. If anything you can change the 
subject line yourself which would have the same effect.

Rey...

Matt Stith wrote:
> This isnt the right spot for this, start another thread.
> 
> On 11/18/06, *Rick Faircloth* <[EMAIL PROTECTED] 
> <mailto:[EMAIL PROTECTED]>> wrote:
> 
>     Thanks for the explanation, Rey...
> 
>     I've got another question for you about jQuery coding.
> 
>     Do you see any reason why the following code wouldn't work?
>     I've been working with it, but the text just sits on the page
>     as if the Javascript is not active...
> 
>     I'm trying to create dynamic
>     announcements that are pulled from a database by CF,
>     then the Title is displayed...on mouse click, the announcement
>     text would slide down and become visible...
> 
>     Rick
> 
>     Here's the code:
> 
>     JQuery code:
> 
>     $(document).ready(function() {
> 
>     $(" div.ann").find("p.title").hide().end().find("p.text").click(functio
>     n()
>     {
>               var answer = $(this).next();
>               if (answer.is(':visible')) {
>                   answer.slideUp ();
>               } else {
>                   answer.slideDown();
>               }
>           });
>     });
> 
>     HTML:
> 
>     <div class="ann">
> 
>     <p class="title">
>     This is my title.
>     </p>
>     <p class="text">
>     This is my text.
>     </p>
> 
>     </div>
> 
> 
> 
> 
> 
> 
>     -----Original Message-----
>     From: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
>     [mailto:[EMAIL PROTECTED]
>     <mailto:[EMAIL PROTECTED]>] On
>     Behalf Of Rey Bango
>     Sent: Saturday, November 18, 2006 11:56 AM
>     To: jQuery Discussion.
>     Subject: Re: [jQuery] Firebug 1.0 coming soon
> 
>     Hi Rick,
> 
>     Firebug is a Firefox addon that dramatically helps your Javascript
>     development efforts. It helps you debug the code, inspect DOM values and
>     even view HTTP requests (critical for Ajax development). It has a ton
>     more functionality and is something that every web developer should be
>     using.
> 
>     Even if the developer charged for it, I would buy it since its such a
>     HUGE help in my development efforts.
> 
>     Rey...
> 
>     Rick Faircloth wrote:
>      > What is "Firebug" and is there a preview of what it does
>     somewhere online?
>      >
>      > Rick
>      >
>      > -----Original Message-----
>      > From: [EMAIL PROTECTED]
>     <mailto:[EMAIL PROTECTED]>
>     [mailto:[EMAIL PROTECTED]
>     <mailto:[EMAIL PROTECTED]>] On
>      > Behalf Of John Resig
>      > Sent: Friday, November 17, 2006 11:59 PM
>      > To: jQuery Discussion.
>      > Subject: Re: [jQuery] Firebug 1.0 coming soon
>      >
>      >> I'll take that as a 'no' then?
>      >
>      > Yeah, unfortunately. We have to keep it private until he wants to
>      > release it (which may be for money, it sounds).
>      >
>      > --John
>      >
>      > _______________________________________________
>      > jQuery mailing list
>      > discuss@jquery.com <mailto:discuss@jquery.com>
>      > http://jquery.com/discuss/
>      >
>      >
>      >
>      > _______________________________________________
>      > jQuery mailing list
>      > discuss@jquery.com <mailto:discuss@jquery.com>
>      > http://jquery.com/discuss/
>      >
> 
>     _______________________________________________
>     jQuery mailing list
>     discuss@jquery.com <mailto:discuss@jquery.com>
>     http://jquery.com/discuss/ <http://jquery.com/discuss/>
> 
> 
> 
>     _______________________________________________
>     jQuery mailing list
>     discuss@jquery.com <mailto:discuss@jquery.com>
>     http://jquery.com/discuss/
> 
> 
> 
> ------------------------------------------------------------------------
> 
> _______________________________________________
> jQuery mailing list
> discuss@jquery.com
> http://jquery.com/discuss/

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to