Thay đổi văn bản trong <code>...</code> thành địa chỉ liên kết

by Phan Nhật Chánh

HTML

<div class="post-body">Blog chia sẻ trao đổi kinh nghiệm sử dụng Blogger Blogspot, Jquery, Ajax, PHP, <code>Blogger Tutorials</code>, Web Design,...</div>

JavaScript

$(function() {
    $('div.post-body').children('code').each(function() {
        $(this).replaceWith(function() {
            return $('<a href="http://nhatchanh.info/p/search-results.html?q=' + $(this).text() + '" target="_blank" title="Tìm từ khóa này"><code>' + $(this).html() + '</code></a>');
        });
    });
});