<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.10.1.js'></script>
<script type='text/javascript'>
$(function(){
$('a.without').attr('title', '');
});
</script>
</head>
<body>
<a class='without' title='hello' href=''>Link</a>
<a title='hello' href=''>Has tooltip</a>
</body>
</html>