JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://github.com/malsup/blockui/raw/master/jquery.blockUI.js"></script>
<link rel="stylesheet" href="http://oroszi.net/bce/fefe/tmpl/block.css">
<script src="http://ajax.aspnetcdn.com/ajax/jquery.templates/beta1/jquery.tmpl.js"></script>
<script src="http://oroszi.net/bce/fefe/tmpl/jquery.dataTables.js"></script>
<link rel="stylesheet" href="http://oroszi.net/bce/fefe/tmpl/demo_table.css">
<script type="text/jquery-tmpl" id="tmpl-table"> 
            <table width="100%" cellpadding="0" cellspacing="0">
                <thead>
                    <tr>
                        <th>Küldő</th>
                        <th>Dátum</th>
                        <th>Üzenet</th>
                    </tr>
                </thead>
                <tbody>
                    {{each results}}
                        <tr>
                            <td><a href="http://twitter.com/${$value.from_user}">${$value.from_user}</a></td>
                            <td>${$value.created_at}</td>
                            <td>{{html $value.text}}</td>
                        </tr>
                    {{/each}}
                </tbody>
            </table>
        </script>

JavaScript

$.blockUI({message:"várjá má!!!"});
$.ajax({
    url: "http://search.twitter.com/search.json",
    dataType:"jsonp",
    data: {
        q: "corvinus",
        rpp: 100
    },
    success: function(resp) {
       $("#tmpl-table").tmpl(resp).appendTo("body");
        $("table").dataTable({
        iDisplayLength:100
        })
       $.unblockUI();
        $.growlUI("Betöltődöt jöhet a mehet");
    },
    error: function() {

    }
});