I am doing a chatting product. I am displaying chatting messages in an iframe. I wish to scroll to last of messages while sending messages.
regards,
Senthil
Printable View
I am doing a chatting product. I am displaying chatting messages in an iframe. I wish to scroll to last of messages while sending messages.
regards,
Senthil
get the frame reference
Code:var x = document.getElementById('framename');
x.scrollTop = x.scrollHeight;