$('ul.links li a').click(function(e){
if ($(this).hasClass('current')) {
// do nothing
} else {
// animation and other effects go here
}
e.preventDefault();
}
in jQuery
Books, worksheets, templates, frameworks and other useful resources for Chief Technology Officers (CTOs), VPs of Engineering & Technology Directors
$('ul.links li a').click(function(e){
if ($(this).hasClass('current')) {
// do nothing
} else {
// animation and other effects go here
}
e.preventDefault();
}
in jQuery