I found Tokbox is a great service for video chat. Is it possible to use text chat alone in tokbox? or text chat with video in Takbox?
Thanks
I found Tokbox is a great service for video chat. Is it possible to use text chat alone in tokbox? or text chat with video in Takbox?
Thanks
                        
                            
                        
                        
                            On
                            
                            
                                                    
                    
                I've build a system with videostreams and text chats. You can use the tokbox signals for it.
function chat_post_message(){
    $.post(url,$('form').serialize(),function(data){
        session.signal({
            type: "livechat",
            data: data
        }); 
    });
}
$(function(){
    session.on("signal", function(event) {
        if(event.type == "signal:livechat"){        
            //update a (chat)container with data
        }
    });
});
https://tokbox.com/developer/guides/signaling/js/
Hope it helps!
Check the documentation about howto use signaling.
But maybe consider building a text chat with socket.io for example.