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

2009-10-11 Thread Rick Faircloth
you're using so I can at least try to get the rollover part working? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of jessie Sent: Sunday, October 11, 2009 8:31 AM To: jQuery (English) Subject: [jQuery] Re: My code is not working

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

2009-10-11 Thread jessie
                > > >     }); > > > > });         > > > > jQuery(document).ready(function($){ > > > >    $('div.LPButton, div.CatMoreBtn, div.CatBuyBtn').pngFix(); > > > > }); > > > > jQuery(document).ready(funct

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

2009-10-10 Thread jessie
.addClass("imgbuttonhover"); > >       $(".button").removeClass("imgbutton"); > > >       }, function() { > > >       $(".button").addClass("imgbutton"); > >       $(".button").removeClass("imgbuttonhover"); >

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

2009-10-10 Thread jessie
you were getting. > > Now, however, I get this error in Firebug: > > $("div.LPButton, div.CatMoreBtn, div.CatBuyBtn").pngFix() is not a function > > If you copy the code above and put it in your editor, does the bracketing > error go away? > > Rick > >

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

2009-10-10 Thread Rick Faircloth
oreBtn, div.CatBuyBtn").pngFix() is not a function If you copy the code above and put it in your editor, does the bracketing error go away? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of jessie Sent: Saturday, October 10, 2009 10

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

2009-10-10 Thread jessie
jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of jessie > Sent: Saturday, October 10, 2009 9:57 PM > To: jQuery (English) > Subject: [jQuery] Re: My code is not working getting an error missing ) > > ok thanx guys, except that didn't resolve the p

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

2009-10-10 Thread Rick Faircloth
and the only error you're getting is that a ")" is missing? -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of jessie Sent: Saturday, October 10, 2009 9:57 PM To: jQuery (English) Subject: [jQuery] Re: My code is not wor

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

2009-10-10 Thread jessie
want to keep my alt and title text behind my image rollovers such as buttons ;-) Jess :) On Oct 11, 11:45 am, "Rick Faircloth" wrote: > Now, Matt!  I just knew by the time I typed up a long-winded reply, > > someone would come along and give the short, to-the-point, answer. :

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

2009-10-10 Thread Rick Faircloth
PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: My code is not working getting an error missing ) Add a ) to the end. You have to close the opening hover() function call.

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

2009-10-10 Thread Rick Faircloth
I'm not sure what the code surrounding your code looks like, but from the code below, it looks like you're missing a ")" at the end to close the first "(" after .hover ... This should work: $(".button").hover(function() { $(".button").addClass("imgbuttonhover"); $(".button").removeClass("

[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.