"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
"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
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
3 matches
Mail list logo