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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T05:00:13+00:00 2026-06-01T05:00:13+00:00

I don’t understand very well this code: var img = $(‘<img/>’, {class: photo, src:

  • 0

I don’t understand very well this code:

var img = $('<img/>', {class: "photo", src: photo.url_n, width: wt, height: ht}).css("margin", border + "px");

It seems to create an image tag: <img src="" class="photo" ... />. I just want to wrap it with a link: <a href="#aaaa"></a>

But I am trying this and it doesn’t work:

$(img).wrap('<a></a>');

I have also tried just:

img.wrap('<a></a>');

Finally the code add the img to another element like this:

d_row.append(img);
  • 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-01T05:00:14+00:00Added an answer on June 1, 2026 at 5:00 am

    First: since img is created as a jQuery object, you don’t need to write $(img) and wrap it in a jQuery object again. Just img will suffice.

    Second: if img hasn’t been appended to the document yet, then you can’t modify it in-place with wrap().

    Third: wrap() is designed to return the contents of the wrapped object, not the wrapper itself. You need to call parent() to get that.

    Try:

    img = img.wrap('<a>').parent();
    

    (you don’t need the closing </a>, jQuery will generate it automatically)

    http://jsfiddle.net/TMeP6/

    However: since img is no longer an image, the variable name img is inaccurate and potentially confusing. I would create a new variable name (a_img or something) and store it in that instead:

    a_img = img.wrap('<a>').parent();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Don't be frightened, its a very basic code. Just wanted to check with you
Don't overthink this - there's a very commonly used term and I ... have
Don't understand, if Data.Map is and [] is. I found this out while wondering
Don't quite understand why this copy constructor is not invoked when I build with
Don't you hate it when you have class Foobar { public: Something& getSomething(int index)
Don't let below code scare you away . The question is really simple, only
Don't be scared of the extensive code. The problem is general. I just provided
Don't dismiss this as a newbie question! It's not, I'm not, I've tried everything,
I don't edit CSS very often, and almost every time I need to go
(Don't know if this is strictly on-topic, but I don't see any better Stack

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.