Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I am making a small PHP Javascript and JQUERY Chatbox and so far its working pretty good but im trying to "Fancy it up". It asks you, the user, for your Name and once you type your name in to the input box you are supposed to click Enter which brings you to the chat box. Here is the code for the Chatbox.

http://pastebin.com/DgQEC9rV You can find the Send button in the PHP at the top of the page.

But I was wondering how to make the Send button and the whole box it is in disappear with JQUERY and have the chat box still load in regularly.

A live example of the chat right now. --> http://www.carlosmayers.com/knil/chat/

I know just looking at the code might make this question seem very unapproachable but I know someone here can help me! Thanks.

share|improve this question
You can put together a fiddle if looking at the code is so unapproachable – Alexander Feb 10 at 18:37

1 Answer

If i intepreted your question right you just want to hide the hole chatbox. But it should still update itself.

So with jQuery you do this: $("#wrapper").attr("style", "display: none");

Whereas #wrapper is the div with the id (# := css-Selector) "wrapper" in your document.

jQuery now sets its style to "display: none", but the Chatbox will still be updated!

If you have Chrome, feel free to test it in the console first.

You could also use $("#wrapper").hide();

share|improve this answer
1  
You should use $.hide() better. – moonwave99 Feb 10 at 18:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.