Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9011859
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T02:51:10+00:00 2026-06-16T02:51:10+00:00

I have this webpeage… http://grabbers.maddoggmedia.com/ When a visitor clicks on the text input inside

  • 0

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();
 });
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T02:51:12+00:00Added an answer on June 16, 2026 at 2:51 am

    The following block of code was found on your site:

        // Prepare layout options.
        var options = {
            autoResize: true,
            // This will auto-update the layout when the browser window is resized.
            container: $('#main'),
            // Optional, used for some extra CSS styling
            offset: 40,
            // Optional, the distance between grid items
            itemWidth: 264 // Optional, the width of a grid item
        };
    
        // Get a reference to your grid items.
        var handler = $('#tiles li');
    
        // Call the layout function.
        handler.wookmark(options);
    

    So call it each time you update the list..

    Js:

       function updateTable() {
        var options = {
            autoResize: true,
            container: $('#main'),
            offset: 40,
            itemWidth: 264
        };
        var handler = $('#tiles li');
        handler.wookmark(options);
    }
    $(document).ready(function() {
        $('div[id*="chat-box-chats"]').hide();
        updateTable();
    
        $(".chat-box-textinput textarea").focus(function() {
            $(this).parent().parent().find("#chat-box-chats").show();
             updateTable();
        });
    
        $(".chat-box-textinput textarea").blur(function() {
            $(this).parent().parent().find("#chat-box-chats").hide();
             updateTable();
        });
    
        $(".chat-box-textinput").click(function() {
            $(".chat-box-banner").show();
        });
    });
    

    JsFiddle: DEMO | SOURCE

    Fiddle to work with: http://jsfiddle.net/apAAG/

    Edit:

    Home.js:

     function updateTable() {
        var options = {
            autoResize: true,
            container: $('#main'),
            offset: 40,
            itemWidth: 264
        };
        var handler = $('#tiles li');
        handler.wookmark(options);
    }
    
    // bookmark stars
     $(document).ready(function() {
     $('#chat-box-chats').hide();
     $('#nav-status-offline').hide();
     $('.chat-box-banner').hide();
     // hides the slickbox as soon as the DOM is ready
    
     $(".chat-box-textinput").click(function(){
      $("#chat-box-chats").show();
    });
     $("#nav-status").click(function(){
      $("#nav-status-offline").show();
    });
     $("#nav-status").click(function(){
      $("#nav-status").hide();
    });
     $("#nav-status-offline").click(function(){
      $("#nav-status-offline").hide();
    });
     $("#nav-status-offline").click(function(){
      $("#nav-status").show();
    });
     $(".chat-box-textinput").click(function(){
      $(".chat-box-banner").show();
    });
    
    $('span.bookmark').click( function() {
    $('span.bookmark').toggleClass("pushed");
    $('span.bookmark img').toggleClass("noopacity");
    });
    
    $('textarea').each(function() {
    // Stores the default value for each textarea within each textarea
    $.data(this, 'default', this.value);
    }).focus(function() {
        // If the user has NOT edited the text clear it when they gain focus
        if (!$.data(this, 'edited')) {
            this.value = "";
        }
    }).change(function() {
        // Fires on blur if the content has been changed by the user
        $.data(this, 'edited', this.value != "");
    }).blur(function() {
        // Put the default text back in the textarea if its not been edited
        if (!$.data(this, 'edited')) {
            this.value = $.data(this, 'default');
        }
    });
    });
    
    $(document).ready(function() {
        $('div[id*="chat-box-chats"]').hide();
        updateTable();
    
        $(".chat-box-textinput textarea").focus(function() {
            $(this).parent().parent().find("#chat-box-chats").show();
            $(this).parent().parent().find(".chat-box-banner").show();
            $(this).addClass("big-textarea");
             updateTable();
        });
    
        $(".chat-box-textinput textarea").blur(function() {
            $(this).parent().parent().find("#chat-box-chats").hide();
            $(this).parent().parent().find(".chat-box-banner").hide();
            $(this).removeClass("big-textarea");
             updateTable();
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a webpage that redirects to another webpage like this: http://www.myOtherServer.com/Sponsor.php?RedirectPage=http://mylink.com/whereIwasgoingtogo.html Then the
http://apw-design.com/ Taking a look at this webpage, I have a div id which starts
I have this webpage the OK : http://ldetek.com/a.jpg the problem : http://ldetek.com/b.jpg Why is
I have this piece of code that works fine in the webpage: <script src=http://code.jquery.com/jquery-1.7.1.min.js></script>
I have made this webpage, you can check it out here http://www.bettingtowin.net/webcam.html I have
If you guys check out this webpage: http://www2.scandvision.se/oresund10/ How have they done this background
I have this pretty simple jquery example: http://jsfiddle.net/clifgray/NTd95/1/ and in that jsfiddle it works
so, I have this webpage here [ http://saikonet.org ] and it's not loading the
Yahoo offers OpenID buttons on this webpage: http://developer.yahoo.com/openid/loginbuttons.html I was wondering if Google /
I have this code for reading webpage. I need to send http header to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.