$('#' + id).html('<a href="http://www.dotnetfunda.com">http://www.dotnetfunda.com</a>');
$('#' + id + ' a').live('click', function (e) {
e.preventDefault();
$('#' + id).html('Prevented going to http://www.dotnetfunda.com and displayed this message instead.');
});