[jQuery] Re: Specific type of menu action

2010-01-12 Thread Glen_H
was hoping someone can help me out. Than you andrei for the link. I have been messing around with it all morning and I think it should be working, but its not lol. maybe someone can find something that I oversaw. here is my site: www.glenhealy.com in firebug I am getting the error that the

[jQuery] Re: Specific type of menu action

2010-01-12 Thread Glen_H
. http://www.glenhealy.com/jquery.easing.min.jshttp://www.glenhealy.com/jquery.lavalamp.min.js Make sure those paths are correct and try again. --Karl Karl Swedbergwww.englishrules.comwww.learningjquery.com On Jan 12, 2010, at 10:20 AM, Glen_H wrote: was hoping someone can

[jQuery] Specific type of menu action

2010-01-10 Thread Glen_H
Hey guys I have been looking for a plug in and/or a name for this type of menu hover effect. Seems like I have seen this all over then as soon as I try to find one to show someone I cant locate it. to this point I haven't been able to describe what i was going for but now I just came across this

[jQuery] Re: img src replacement

2010-01-08 Thread Glen_H
Hey Mark! Thanks for taking the time to respond! That is a great way to do it. I am learning jquery so I wanted to see how to do it in jquery. As you can see im having a tough time with it lol. thanks for the feedback though Glen On Jan 7, 9:53 pm, Mark Kelly wastedti...@gmail.com wrote: Hi

[jQuery] img src replacement

2010-01-07 Thread Glen_H
In my footer I have a sign where I want it to say one thing regularly, and then when someone hovers, i want it to say sometyhing else. I basically made 2 images, and I just want to switch images on the hover. here is my code I used and its not working.: $(#footer #footer-contain #availability

[jQuery] Re: img src replacement

2010-01-07 Thread Glen_H
a second event to hook on the .hover event is when you mouse off, so use that event to revert back to whatever image was there On Jan 7, 11:02 am, Glen_H glen.f.he...@gmail.com wrote: In my footer I have a sign where I want it to say one thing regularly, and then when someone hovers, i want

[jQuery] Re: img src replacement

2010-01-07 Thread Glen_H
/thought-of that is the issue :-) On Jan 7, 12:10 pm, Glen_H glen.f.he...@gmail.com wrote: I have it now set up like this:  $(#footer #footer-contain #availability img).hover(function () {                         $(this).attr('src', './images/avail_hover.png'}); } it still isnt working

[jQuery] Re: Can somebody tell me how I can Unsubscribe to the mailing list Pleeeeeeeeease!

2010-01-07 Thread Glen_H
on the right of your screen go to edit my membership On Jan 7, 1:01 pm, Darren Bernard darrenbernard...@hotmail.com wrote: Can somebody tell me how I can Unsubscribe to the mailing list Please! _ Got more than one Hotmail

[jQuery] Re: img src replacement

2010-01-07 Thread Glen_H
need to set here's a super quick and working example http://jsbin.com/aluhe/edit(code) http://jsbin.com/aluhe(run) On Jan 7, 12:32 pm, Glen_H glen.f.he...@gmail.com wrote: does the attr function change the img source or does it add it in? Perhaps I need a different function to do

[jQuery] Re: img src replacement

2010-01-07 Thread Glen_H
and working example http://jsbin.com/aluhe/edit(code) http://jsbin.com/aluhe(run) On Jan 7, 12:32 pm, Glen_H glen.f.he...@gmail.com wrote: does the attr function change the img source or does it add it in? Perhaps I need a different function to do it? is that possible? i

[jQuery] rotate/loop using jquery

2009-12-15 Thread Glen_H
here is my problem: $(#btnTraffic).click(function(){ $(#trafficLight).css(background-color,yellow); }); btnTraffic is my button, when I click it, it changes from red to yellow because of the css. I want to click it multiple times and have it rotate between red, yellow and green. so it

[jQuery] Re: rotate/loop using jquery

2009-12-15 Thread Glen_H
if ( $(tr_id).css('background-color') == 'yellow' )              $(tr_id).css('background-color', 'green');         else              $(tr_id).css('background-color', 'red'); }); Thanks Regards, Dhruva Sagar. On Tue, Dec 15, 2009 at 9:25 PM, Glen_H glen.f.he...@gmail.com wrote: here is my

[jQuery] something missing from my code?

2009-10-02 Thread Glen_H
Hey guys, Im new to Javascript and JQuery, I am trying to have a featured area on the front page to my site, basically there is a right div area which holds the picture, on the left there is a menu with 4 buttons. here is the html: div id=projectmenu ul id=projMenu lia

[jQuery] Re: something missing from my code?

2009-10-02 Thread Glen_H
() and .show(), which gives you more options (like animation effects if you want) as well as automatically handles different show/hide code needed for different types of DOM objects On Oct 2, 9:00 am, Glen_H glen.f.he...@gmail.com wrote: Hey guys, Im new to Javascript and JQuery, I am trying

[jQuery] How to link the JQuery

2009-09-30 Thread Glen_H
I am confused as to how to link an external JQuery file to my web page. I understand using script src=/. My question is regarding the file I downloaded from Jquery.com. Do I add code to that file and link it, or do I link that file and then create a new file with javascript in it and link that as

[jQuery] Re: How to link the JQuery

2009-09-30 Thread Glen_H
on that page. The only thing to bear in mind is that the files will load in the order they're specified.  So make sure your include to the jQuery file is first. On Wed, Sep 30, 2009 at 6:46 PM, Glen_H glen.f.he...@gmail.com wrote: I am confused as to how to link an external JQuery file to my web

[jQuery] Re: How to link the JQuery

2009-09-30 Thread Glen_H
technically access or touch the .css file.  It applies a particular style to an element.  Whether that element knows that style depends on whether or not the style is defined (either inline via style type=text/css or via a linked .css file). On Wed, Sep 30, 2009 at 7:59 PM, Glen_H glen.f.he