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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T11:34:46+00:00 2026-06-16T11:34:46+00:00

For some reason, the code below doesn’t work. I need it to assign an

  • 0

For some reason, the code below doesn’t work. I need it to assign an ID to one object. What am I doing wrong below?

  var frame = document.getElementsByTagName("iframe").setAttribute("id","iframe");

I have a jQuery libary installed, if it should be of any use.

  • 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-16T11:34:49+00:00Added an answer on June 16, 2026 at 11:34 am

    Since you are using jQuery you can make this much simpler:

    $('iframe').attr('id', 'iframe'); // or:
    $('iframe').prop('id', 'iframe');
    

    This affects all <iframe> elements on the page and thus you better have only one. Duplicate IDs are serious business. They break stuff and you really need to avoid them. You could chain in .first() or use the iframe:first selector to make sure you only target the first element.


    Here’s the jQuery-less solution, also just for the first <iframe>:

    var frame = document.getElementsByTagName("iframe")[0];
    frame.id = 'iframe';
    

    Line 1: You actually want the (first) iframe element in frame.
    Line 2: The ID is available as a property so you can use .id instead of setAttribute.

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

Sidebar

Related Questions

for some reason this code wont work, it doesn't seem to read the javascript.php
For some reason the following code doesn't work on Windows XP. new URL(file:// +
I've got the code below, but for some reason the Flash slider doesn't allow
For some reason i'm getting an unexpected [ in the below line of code.
preg_match(/\b(word1|word2)\b/iu, 'text text text word1 text text'); For some reason the above code doesn't
Why doesn't this code work? Probably I've done somethig wrong, but I can't find
I am leaning some Java for school, and for some reason the code below
For some reason my code here (this is the entire thing) doesnt actually render
For some reason this line of code is giving me quite a problem. struct
For some reason, this line of code is returning undefined for $(this).attr(href) $(a).attr(href, javascript:page('

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.