[jQuery] Re: basic Show Hide icon

2008-03-09 Thread MorningZ
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 a tags and just use CSS: cursor: pointer http://www.w3schools.com/css/pr_class_cursor.asp

[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 a 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 J Moore
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; }); On Mar 7, 6:40 pm, SparrowDog [EMAIL PROTECTED] wrote: I am using the Basic Show Hide

[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