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 8164771
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T19:23:26+00:00 2026-06-06T19:23:26+00:00

I’m trying to make an image stretch to fit inside a div. However I

  • 0

I’m trying to make an image stretch to fit inside a div. However I want it to overflow so that the entire div is filled. The div resizes with the page. I want an effect similar to the jQuery bgstretcher plugin (http://www.ajaxblender.com/bgstretcher-2-jquery-stretch-background-plugin-updated.html) , but I cannot use that plugin because I’m already using it for the background image on the page, and it seems to not work when you try and activate multiple instances of it.

So what I’m asking is for some sort of simple jQuery function that resizes an image to completely fill a div with overflow hidden, so that there are no gaps, but without skewing the image.

Edit:

http://jsfiddle.net/R7UCZ/

That’s sort of what I’m after, but I want the image to fill the entire div without skewing. If the image goes out of the div a bit, that’s fine, but I need it to resize with the div, which resizes with the page, both height and width.

  • 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-06T19:23:27+00:00Added an answer on June 6, 2026 at 7:23 pm

    First you need to get the image properties and see which one is larger, the height or the width, then resize the image based on the div size after the window resizes, like this:

      //this would load up initially, you will need this data for future processing
    
    
       div = $("div");
       imgsrc = div.find('img').attr('src');
    
       var img = new Image()
       img.onload = function(){
            imgw = img.width;
            imgh = img.height;
    
            //after its loaded and you got the size..
            //you need to call it the first time of course here and make it visible:
    
            resizeMyImg(imgw,imgh);
            div.find('img').show();
    
            //now you can use your resize function
            $(window).resize(function(){ resizeMyImg(imgw,imgh) });
    
            }
       img.src = imgsrc
    
    
       function resizeMyImg(w,h){     
          //the width is larger
          if (w > h) {
            //resize the image to the div
            div.find('img').width(div.innerWidth() + 'px').height('auto');
          }        
          else {
            // the height is larger or the same
            //resize the image to the div
            div.find('img').height(div.innerHeight() + 'px').width('auto');
          }
    
         }
    

    You can actually find a complete solution here:
    http://jsfiddle.net/CDywS/1

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

Sidebar

Related Questions

Basically, what I'm trying to create is a page of div tags, each has
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm trying to create an if statement in PHP that prevents a single post
I am trying to understand how to use SyndicationItem to display feed which is
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace

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.