Reputation: 4174
I'm in the process of learning JQuery as I'm doing a major redesign of a site. I realize how nice it would be to do some styling in the javascript instead of remembering to add the right css class to every div (apparently, I like to forget such things).
Anyway, I want to add the style cursor: pointer;
to all elements that have a click event registered. I think it needs to look something like this:
$("div").Find(/*Has Click Event*/)
.css("cursor", "pointer");
Upvotes: 5
Views: 879