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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:38:15+00:00 2026-05-12T17:38:15+00:00

So, let say I have this: var d = document.createElement(‘div’); d.id = whatever;` So,

  • 0

So, let say I have this:

var d = document.createElement('div');
d.id = "whatever";`

So, d is the DOM object,

how can I create or convert it into jQuery object?

e.g.
$(d) ???

and, how to ‘read’ all attributes of the jQuery object? just like the var_dump of PHP.

  • 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-12T17:38:15+00:00Added an answer on May 12, 2026 at 5:38 pm
    // create a jQuery-boosted div
    $div = $('<div></div>');
    $div.attr('id','someId');
    alert($div.attr('id'));
    
    // to get the DOM element:
    var div = $div[0];
    
    // or
    var div = $div.get(0);
    

    or just wrap the dom element in $() as you suggested:

    $(d).attr('id','someId');
    $(d).blah();
    

    Use attr to get/set element attributes. I’m not sure if there’s a one-liner that can dump all of an element’s attributes and their respective values (firebug serves that purpose for me), but you can create an array with all the attribute names you’re interested in, and do something like:

    var attr = ['name', 'id', 'src', 'foo'];
    var len = attr.length;
    for (var i = 0; i < len; i++) 
        alert($(d).attr(attr[i]));
    

    or using $.each:

    $.each(['name', 'id', 'src', 'foo'], function(i,val) {
        alert( 'Attribute: ' + val + ' Value: ' + $(d).attr(val) );
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 219k
  • Answers 219k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer In the button, set a field, for example: bool isClosing;… May 12, 2026 at 11:42 pm
  • Editorial Team
    Editorial Team added an answer The problem vanished with newer versions of STS. Additionally my… May 12, 2026 at 11:42 pm
  • Editorial Team
    Editorial Team added an answer EDIT Below is my original answer but you can accomplish… May 12, 2026 at 11:42 pm

Related Questions

So, let say I have this: var d = document.createElement('div'); d.id = whatever;` So,
I have the code for a javascript calendar and it works perfectly as it
Ok. so I'm working on an app that retrieves items from a db and
Is it possible to do something like this in an ASP.NET MVC controller? public
NHibernate allows me to query a database and get an IList of objects in

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.