﻿
$.fn.TwitterFeed = function (url) {
    return this.each(function () {
        var el = $(this);
        $.post(url, {}, function (txt) {
            var t = $(txt);
            t.find(".twitter-title").prepend("&ldquo;").append("&rdquo;");
            
            el.html(t);
        });
    });
}
