Realtime.co

try it for free! No installation required

Check our Realtime® Demos

A sample of the Realtime® Framework potential.

All our demos were created by using xRTML, our cutting edge API that allow developers to build their Realtime®-enabled web applications very fast and easily.

Shoutbox

<XRTML:Shoutbox .../>

← back

The Shoutbox tag allows you to have a chat box for your visitors to use. It's just like any regular shoutbox, but with all the goodness of Realtime®: low latency and low bandwith usage. On top of that, whenever a user sends a message, it is immediatly sent to everyone present at the site. No need to wait for a nasty iframe to reload or for ajax requests to be made and hammer your servers!

xRTML.ready(function(){
    xRTML.TagManager.create({
        name: "Shoutbox",
        target: "#myTarget",
        channelId: "myChannel",
        connections: ['myConnection'],
        triggers:[{ name: "myTrigger" }]
    });
});
<xrtml:Shoutbox version="3.0" target="#myTarget" channelId="myChannel">
    <xrtml:connections>
        <xrtml:connection name="myConnection"></xrtml:connection>
    </xrtml:connections>
    <xrtml:triggers>
        <xrtml:trigger name="myTrigger"></xrtml:trigger>
    </xrtml:triggers>
</xrtml:Video>