How to open a chat window direct to user on Mobile Version
PostPosted: 11 Nov 2013, 14:12
On the desktop version you can use this snippet of javascript to open a chat window direct to a user (like when you click on a users name in your buddies list.)
How can we do this on the mobile version of arrowchat?
- Code: Select all
<a href="#OpenIM" class="command" id="OpenIM_5940600" onclick="startPopoutChat(); return false;" rel="nofollow">Instant Message</a>
<script>
document.getElementById("OpenIM_7115198").onclick = function() {
jqac.arrowchat.chatWith('7115198');
};
</script>
How can we do this on the mobile version of arrowchat?