tsearch.js - counterfacto - small software tool to analyze twitter and highlight counterfactual statements
 (HTM) git clone git://parazyd.org/counterfacto.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       tsearch.js (211B)
       ---
            1 $(function() {
            2         $('#btnSearch').click(function() {
            3                 $.ajax({
            4                         url: '/search',
            5                         data: $('form').serialize(),
            6                         type: 'POST',
            7                         success: function(response) {
            8                                 console.log(response);
            9                         },
           10                 });
           11         });
           12 });