[jQuery] Re: basic Show & Hide icon

2008-03-09 Thread SparrowDog
"What I would like to do though is to have a hand (or some other meaningful icon) show up on mouse over instead of the cursor. Is there a way to do this?" Drop the tags and just use CSS: cursor: pointer http://www.w3schools.com/css/pr_class_cursor.asp - Doh! Forgot about

[jQuery] Re: basic Show & Hide icon

2008-03-08 Thread SparrowDog
"return false;" is your friend. I find i have to add it to almost every click() and submit() event. e.g. $('#toggletandc').click(function(){ $('div.showhide,div#tandc').toggle(); return false; }); The "return false;" didn't change anything. Joanne

[jQuery] basic Show & Hide icon

2008-03-07 Thread SparrowDog
I am using the Basic Show & Hide (code below) succesfully and have figured out how to link it to text rather than a 'submit button'. What I would like to do though is to have a hand (or some other meaningful icon) show up on mouse over instead of the cursor. Is there a way to do this? When I wra