That depends on what you are doing, and what the default behavior of the element is.
If you are for example replacing the default behaviour of a link by opening the page in a popup, it makes perfect sense to use a link. Search engines will still see the link, and it will degrade gracefully for those few who have disabled client script.
If you on the other hand is using an event for something that is completely different from the navigation that you would use a link for, you should rather use a different element.
To stop the default behaviour of a link, you can use the preventDefault method. Example:
$('a#info').click(function(e){
alert('info');
e.preventDefault();
});
Note that there is no requirement to use an id to target the element where you want to catch the event. An id is an efficient way to target elements, but any method of targetting the element is valid. Example:
<div class="button">Eat me</div>
$('.button').click(function(){ alert('Eaten.'); });