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

  • Home
  • SEARCH
  • 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 7640359
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T08:39:05+00:00 2026-05-31T08:39:05+00:00

I am just wondering if someone could explain what the following jQuery script does:

  • 0

I am just wondering if someone could explain what the following jQuery script does:

$j('.rc_bottom').each(function () {
    var boxDiv = $j(this).parent();
    if (boxDiv.outerWidth() > 0 && $j(this).css('width') != 'auto') {
        $j(this).css('width', $j('.content', boxDiv).outerWidth());
    }
});

And why it is causing an 8-sec longer page load than Firefox.

To note, I have a lot of divs with rc_bottom defined as follows.

<div class="clearfix mt_5">
    <div class="fl_left">
        <div class="rc_box-rc_blueBtn">
            <div class="buttonwidthbar">
                <div class="rc_blueBtn">
                    <div class="content">
                        <div class="contentPadding clearfix">
                            <div class="rc_top"></div>
                            <a href="<%# GetUrl((TrainingItem)Container.DataItem) %>"><span class="btnspan"><%# GetButtonText((TrainingItem)Container.DataItem)%></span></a>
                        </div>
                    </div>
                    <div class="rc_bottom" style="width: 100%;">
                        <div> </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>      
  • 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-05-31T08:39:06+00:00Added an answer on May 31, 2026 at 8:39 am

    You can optimize your code by reducing the number of dom elements fetched in your code.

    var $this;
    $j('.rc_bottom').each(function () {
            $this = $j(this);
            if ($this.parent().outerWidth() > 0 && $this.css('width') != 'auto') {
                $this.css('width', $this.prev().outerWidth());
            }
    });
    

    Note that inside the loop $j('.content', boxDiv) can be replaced by $j(this).prev() considering your markup which is faster than $j('.content', boxDiv)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just wondering if someone could explain this to me? I have a program that
i'm new to obj-c and i was just wondering if someone could explain this.
I ran across this and was wondering if someone could explain why this works
Just wondering if someone could explain why an unstable sort is considered bad? Basically
Just wondering if someone could help me with a very simple SQL query. I
Just wondering if someone could point me in the right direction of how to
I'm just wondering if someone could point me in the right direction here, I
I was just wondering if anyone could explain to me how a price comparison
I'm developing an API and I was just wondering if someone could advise on
I'm just wondering if it's possible, and if so could someone lead me into

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.