[jQuery] image manipulation

2009-01-21 Thread Ronn
I'm trying to take a standard .png image and turn the color all the way down so it looks like a shadow(solid black). I have seen plug-ins like the refection plug-in that manipulates the image. Can anyone point me in the right direction? Thanks

[jQuery] Re: Jquery change event

2008-10-19 Thread Ronn Ross
Dave, Thank you that worked great. Is there away to find out what specific element is firing the event. For example I would like to know the 'id' of the element that is currently being type in. Thanks again, Ronn On Sun, Oct 19, 2008 at 12:24 PM, Dave Methvin <[EMAIL PRO

[jQuery] Jquery change event

2008-10-18 Thread Ronn
How do I get jquery's change event you fire per letter typed into a text box? I'm using the code below, but it only fires when I tab off the textbox. Thanks, Ronn $(document).ready(function() { $('input').change(function() { alert('you changed something'); }); });

[jQuery] Animation

2008-09-09 Thread Ronn Ross
e info. Thanks in advance, Ronn

[jQuery] Re: count children

2008-09-04 Thread Ronn Ross
Michael, You were right my markup was a little messed up. I cleaned it up and used $('#master').children().size() and it worked for what I needed. Thanks for your quick response and you detailed explanation. Thanks again, Ronn On Thu, Sep 4, 2008 at 11:44 AM, Michael Geary <[EM

[jQuery] count children

2008-09-04 Thread Ronn Ross
Hello all I have seen examples of counting children of an element like a div. I have tried to customize those examples to work for my situation, but with no success. What I'm trying to accomplish seems simple, but I have not been able to make it happen. I'm simply trying to count the 'group#' divs

[jQuery] Applying jqDnR to images.

2008-08-29 Thread Ronn Ross
Hello all, I'm using jqDnR (http://dev.iceburg.net/jquery/jqDnR/) to allow things to be draggable on the my page. Applying it to div tags is super easy and works great. Unfortunately when I try to apply it to an image I can't get it to work. This is what I use for a div: $('#container').jqDrag('.D

[jQuery] Re: animate in order

2008-08-28 Thread Ronn Ross
Brian, Thanks that worked great. I'm still new to JQuery, but community has been a great help. Thanks again for the help, Ronn On Thu, Aug 28, 2008 at 1:31 PM, Brian Schilt <[EMAIL PROTECTED]> wrote: > > Ok, our syntax was a bit jacked up. I created a test page,

[jQuery] Re: animate in order

2008-08-28 Thread Ronn Ross
"); }); and it didn't alert when I ran the page. Do you have any other ideas? Thanks, Ronn On Thu, Aug 28, 2008 at 11:50 AM, Brian Schilt <[EMAIL PROTECTED]> wrote: > > You'll need to put the second animation in the callback function of > the first. >

[jQuery] animate in order

2008-08-28 Thread Ronn
I have two items: $('#backDropLeft').animate({height:550}, {duration: 750, easing: 'easeOutBack'}); $('#contactBox').fadeIn(1000, function() { }); How can I make contactBox wait until backDropLeft is finished to run its animate?

[jQuery] Sleep or delay in JQuery

2008-08-28 Thread Ronn
Hello all, I'm new to JQuery and I'm looking for a Sleep or Delay function. I have two animations and I want one to not start until the other has finished. Any Ideas? Thanks in advance