use event.preventDefault to prevent anchor tag to work.
anchor tag doesn't disable on adding attribute disabled
var status = $('#status').text(); // get text value if it's is span/div/p etc
if (status == 'Registered') {
$('#addlink').click(function (e) {
e.preventDefault();
});
}