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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T23:47:54+00:00 2026-06-10T23:47:54+00:00

The jQuery overload for creating an HTML element and supplying a map of properties

  • 0

The jQuery overload for creating an HTML element and supplying a map of properties does not seem to work for controls. I saw in the documentation that IE does not allow you to change the type so you have to specify that, but it seems to ignore everything in the properties map in IE and Chrome:

$("<input type='text'>", {
    id: "foo",
    name: "foo",
    value: "test"
}).appendTo("body");

Is creating the following element:

<input type="text" />

JSFiddle demonstrating the behavior: http://jsfiddle.net/JyvBh/

  • 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-10T23:47:55+00:00Added an answer on June 10, 2026 at 11:47 pm

    You will need to add the type as part of the other attributes and it will work; like this:

    $("<input>", {
        type: "text",
        id: "foo",
        name: "foo",
        value: "test"
    }).appendTo("body");​
    

    EDIT: Suportted Workaround According to jQuery Docs

    According to the jQuery docs the workaround actually uses a different format as below:

    $('<input type="text" />').attr({
        id: 'foo',
        name: 'foo',
        value: 'test'
    }).appendTo("body");
    

    Updated JSFiddle including both methods above.

    I hope this helps!

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

Sidebar

Related Questions

Jquery does not work on the Internet explorer . However it runs on other
Jquery offset() does strange things, when called on fixed positioned element. First call of
How does one add a jQuery Mobile transition to an HTML POST rendered with
Jquery did not carry out!!!I don't know why $(.other-edithion).click(function(){ var city = $(this).closest('#city'); if
jQuery code: function ajaxsubmit(){ $.ajax({ url: /update, type: POST, dataType: html }).success(function(data) { $('#result').html(data);
jQuery Mobile Docs says if we wrap form element in div containing data-role=fieldcontain proper
So it seems that the non-generic overload of Html.ActionLink() works nicely with HTML5 data-
I have designed a custom calendar using html and jQuery. I want to highlight
jQuery.widget(ui.test,{ _init: function(){ $(this.element).click(this.showPoint); }, showPoint: function(E){ E.stopPropagation(); alert(this.options.dir); } } $('#someEleme').test(); Right now,
JQuery is not being able to identify tags when I use in the Master

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.