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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:16:33+00:00 2026-05-15T14:16:33+00:00

I was curious if it was possible to look at an images width, and

  • 0

I was curious if it was possible to look at an images width, and if the width is less than X number, then it would get a certain class.

Essentially I want to specify three classes for images like so:

  • If width is less than 100px then the image itself will have the class .small
  • If width is less than 400px then the image itself will get the class .medium
  • If width is less than 600px then the image itself will get the class .large

.. etc If I need to add more sizes and classes

Is this possible?

  • 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-15T14:16:34+00:00Added an answer on May 15, 2026 at 2:16 pm
    var img = $("#myImage");
    var width = img.width();
    if (width < 100)
        img.addClass("small");
    else if (width < 400)
        img.addClass("medium");
    else if (width < 600)
        img.addClass("large");
    

    Untested, but that looks about right.

    Also, if you wanted to apply these rules to all images in your document, or at least all images in a specific container, you could:

    $("#divWithImages img").each(function(i, el)
    {
        var img = $(el);
        var width = img.width();
        if (width < 100)
            img.addClass("small");
        else if (width < 400)
            img.addClass("medium");
        else if (width < 600)
            img.addClass("large");
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm curious if it is possible to get some help building a regEx that
I'm curious is it possible to change text properties of tick labels independently of
Still wrapping my head around Delegates and I'm curious: Is it possible to overload
Just curious if it is syntactically possible to do something like this: static (void)
I'm curious if it is possible to move the written and fully working project
I'm curious if it is possible to determine whether or not an Assembly has
I'm curious if it's possible to use the nantcontrib task in combination with Mono's
I'm curious if this is even possible.
I'm curious if this is possible at all since a select * from html
I am curious if it is possible to dynamically build a list comprehension in

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.