I have this webpeage…
http://grabbers.maddoggmedia.com/
When a visitor clicks on the text input inside the chat area, I want the chat to open up, which it does. However I cannot seem to figure out how to move the content below up and down as it opens and closes. As of now it just goes underneath the other content.
I really need this completed soon, I would appreciate any help. I have spent 6 hours today trying to find the right answer to no avail.
http://jsfiddle.net/maddoggmedia/6LK4p/
$(document).ready(function() {
$('#chat-box-chats').hide();
$(".chat-box-textinput").click(function(){
$("#chat-box-chats").show();
});
$(".chat-box-textinput").click(function(){
$(".chat-box-banner").show();
});
The following block of code was found on your site:
So call it each time you update the list..
Js:
JsFiddle: DEMO | SOURCE
Fiddle to work with: http://jsfiddle.net/apAAG/
Edit:
Home.js: