I want to prevent links from opening pages. So I have written this :
$("a").click(function(e) {
e.preventDefault()
}
which is great! But this blocks my other event :
$(".toolbar a").click(function(e) {
...action...
}
Sure I can add my action to the first event with some test, but is there an elegant way to prevent only href event from executing?
EDIT
In fact it works, sorry. See @raina77ow fiddle working here: http://jsfiddle.net/HeFS6/