Tagged Questions
getElementByID is an essential method used in Javascript and other places to retrieve a particular node in a HTML or XML document by its ID.
18
votes
4answers
815 views
Javascript getElementById lookups - hash map or recursive tree traversal?
Does the DOM have a hash-table of elements whose keys are the elements' ids?
I want to know if document.getElementById looks up a hash table or traverses the entire tree.
Is this behavior different ...
8
votes
3answers
41k views
How to getElementByClass instead of GetElementById with Javascript?
I'm trying to toggle the visibility of certain DIV elements on a website depending on the class of each DIV. I'm using a basic Javascript snippet to toggle them. The problem is that the script only ...
8
votes
5answers
6k views
getElementById.contentDocument error in IE
<html>
<script type="text/javascript">
function func() {
alert(document.getElementById('iView').contentDocument);
}
</script>
<body>
...
6
votes
5answers
146 views
How to getElementById using DOM?
I am having part of HTML page given below and want to extract the content of div tag its id is hiddenDivHL using DOM Parser:
Part Of a HTML Page:
<div id='hiddenDivHL' ...
5
votes
3answers
101 views
document.getElementById() returns null on IE9
I'm working on a popup and i'm having some hard time with Internet Explorer 9. This is the piece of code that gives me trouble:
var popUp= document.getElementById('projectInfo');
...
5
votes
3answers
331 views
Why does document.getElementById() function exist?
when creating web pages I have always used function
var someVariable = document.getElementById('myID');
to get a reference to an element object. It was recently suggested to me that this is not ...
4
votes
3answers
150 views
Why does facebook have random element IDs?
I have noticed that facebook has random element IDs for every element - including elements that have no unique element id.
<div id="__w2_YvdN1r2_loading">blah</div>
Any ideas why they ...
4
votes
3answers
2k views
document.all vs. document.getElementById
When should you use document.all vs. document.getElementById
What is your answer?
4
votes
3answers
2k views
GetElementById() not finding the tag?
I have a valid XML file being read by the following .NET C# windows service.
The tag in question (u1_000) is absolutely in the element:
<book id="u1_000" category="xyz">
Is there some reason ...
4
votes
2answers
10k views
MSIE : jQuery's append()/html() not working, resorted to getElementById().innerHTML
This is a long one,
The Premise
Was called in to help out a client with some bug fixing on a current project of theirs. What needed fixing was a jobs listing page. You have a list of jobs, you click ...
4
votes
5answers
5k views
Get element by ID in JavaScript
I use JavaScript and this error appears for me during execution:
Microsoft JScript runtime error: 'document.getElementById(...)' is null or not an object
this my code:
<asp:Content ...
3
votes
5answers
306 views
Javascript getElementById base on partial string
I need to get the ID of an element but the value is dynamic with only the beginning of it is the same always.
Heres a snippet of the code.
<form class="form-poll" id="poll-1225962377536" ...
3
votes
5answers
241 views
Getting element by a custom attribute using JavaScript
I have an xHTML page where each HTML element has a unique custom attribute like follows:
<div class="logo" tokenid="14"></div>
I need a way to make the similar as does ...
3
votes
5answers
214 views
Using Javascript to modify HTML content
Doubtful this needs much explaining but I think I need a second set of eyes to check this out because I just cannot fathom why it won't! Try using the "Energy Calculator" and no value will be returned ...
3
votes
5answers
595 views
getElementById() returns null even though the element exists
I'm trying to get the element with getElementById(), but it returns null even though the element exists. What am I doing wrong?
<html>
<head>
<title>blah</title>
...
3
votes
2answers
122 views
Bookmarklet doesnt working on Mozilla but does in chrome
i wrote this bookmarklet
<a href="javascript:var m = document.getElementById('xxx'); m.value=17;">test</a>
and it is working in Chrome, but not in Mozilla Firefox
i even tried
<a ...
3
votes
5answers
203 views
document.getElementById(“someId”) Vs. someId
This question might seem silly, but what's the difference between accessing an element (with id "someId") using document.getElementById("someId") Vs. just typing someId ?
eg:
...
3
votes
2answers
274 views
javascript: getElementById problem in IE
I am trying to attach a click event to a check box using JavaScript. Shown below is the HTML and JS.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
...
3
votes
1answer
928 views
C# webBrowser control cannot find htmlElement after Ajax webpage update or in frame
Using webBrowser control in a winForm. but when the webpage is updated by Ajax or in a frame, I cannot use
webBrowser1.document.getElementById et. to find that htmlElement.
the element also won't ...
3
votes
6answers
801 views
node selection and manipulation out of the dom (What is jQuery's trick ?)
Hi I would like to do dom selection and manipulation out of the dom.
The goal is to build my widget out of the dom and to insert it in the dom only once it is ready.
My issue is that getElementById ...
3
votes
4answers
1k views
Inherited CSS Values via Javascript
On my page I am changing some css styles via javascript. When I try and pull a value that has been inherited - it comes up blank. Consider the following:
.Sliding
{
display: none;
...
2
votes
1answer
47 views
Uncaught ReferenceError: getElementById is not defined at null:1
I am trying to get the contents of hiddenDivHL which is present in the part of the following HTML page :
<div id='hiddenDivHL' ...
2
votes
2answers
53 views
getElementById failing on a valid div?
Puzzled... after executing the 10 lines of code below, elem1 is defined, and elem2 is null. However, the 2 blocks of code are identical, apart from the variable names, and the fact that one is ...
2
votes
1answer
67 views
How to retrieve an element with getElementById and then extend it to use Prototype methods?
I have an input element with id billing:postcode. The Prototype $() selector is unable to select this element as described in this ticket.
I found this solution for the same problem in jQuery. I ...
2
votes
3answers
77 views
getElementById() is always showing NULL status
I am going through lessons of JavaScript about Event Handlers, while doing so I am starting very basic which is getElementById(). Below is my HTML and JavaScript Code. The following code has images ...
2
votes
6answers
68 views
How can I access a particular div on a page which has the same id in two places?
This is the same question as this:
Referring to a div inside a div with the same ID as another inside another
except for one thing.
The reason there are two elements with the same ID is because I'm ...
2
votes
2answers
76 views
javascript document.getElement.setAttribute doesn't work
I have this problem:
On this website: http://www.azercell.com/WebModule1/mainservlet?cmnd=sms&lang=en
I'm trying the following script, it works fine with C#, but javascript nope, why?
...
2
votes
1answer
82 views
PHP XML DOM getElementById
I need to pick one tag from xml file and insert another tag before this tag. I'm doing this with method insertBefore in DOM, but the problem is, that if I want pick the tag before I want to add the ...
2
votes
4answers
76 views
dynamic element created not POSTed
I create an HTML select element dynamically after a user choice is made from another select element. However the PHP script for inspecting the form does not recognise the new element and is indicating ...
2
votes
2answers
97 views
Variable assignment to getElementById, not working
I've tried looking on stackoverflow, but can't quite find the same issue as me - I'm certain the issue is easy to solve, but somehow...it's not working.
I have some inputs, which will ...
2
votes
6answers
70 views
Is it possible to draw on multiple canvases at once?
All of my canvas drawing functions start something like this:
function drawMe(){
var canvas = document.getElementById('canvas-id');
var ctx = null;
ctx = canvas.getContext('2d');
...
2
votes
2answers
255 views
Selecting an element in iFrame jQuery
In our application, we parse a web page and load it into another page in an iFrame. All the elements in that loaded page have their tokenid-s. I need to select the elements by those tokenid-s. Means - ...
2
votes
4answers
483 views
Why document.getElementById for hidden input works in IE but not Chrome?
i have a problem with this part of js code not working in Chrome but working in IE.
this is my javascript code :
function submitformWithPage(xpage)
{
document.getElementById('itempage').value = ...
2
votes
4answers
340 views
Diference between getElementById and jquery $('#smth')
Hello what's the difference between classic Javascript code:
document.getElementById('theID')
and th jQuery version:
$('#theID')
because i used the second in a project and i got error instead of ...
2
votes
1answer
93 views
Element within AJAX-fetched HTML cannot by found by getElementbyID
It's because it hasn't initialized yet. If I put in an alert(), it allows the browser to be freed up and initialize the element. The question, then, is how can I force it to initialize the element ...
2
votes
3answers
290 views
Why doesn't querySelector('#id') map to document.getElementById('id')?
I'm into selectors performance lately, and it's bugging me that the browsers which currently implements the Selectors API don't use document.getElementById when a simple #id is being passed.
The ...
2
votes
1answer
162 views
Can't find flowed text element by ID in SVG
I've been playing with animation in an SVG:
http://imgh.us/renamon-animtest.svg (links to script "anim.js")
In the window.onload event, I have:
function init(evt)
{
if(window.svgDocument == ...
2
votes
3answers
497 views
Javascript document.getElementById doesn't seem to work
I have the following code, and the javascript console in chrome says "Can't read innerHTML property of null. Why does document.getElementById('display') turn up empty handed?
<!DOCTYPE html>
...
2
votes
4answers
2k views
JavaScript getElementById(…) is null or not an object IE
This must be something very simple for the JavaScript experts out there. In the following code, I am trying to open an iframe to the full height of browser window.
<%@ Page Language="C#" ...
2
votes
4answers
2k views
window.onload seems to trigger before the DOM is loaded (JavaScript)
I am having trouble with the window.onload and document.onload events. Everything I read tells me these will not trigger until the DOM is fully loaded with all its resources, it seems like this isn't ...
2
votes
2answers
631 views
create array of <li>s in a specific div using javascript
I'm trying to create an array of <li> that are in a div. So I have
var arr = document.getElementById('mainNav').getElementsByTagName('li');
For testing purposes, I put an alert("test"); ...
2
votes
2answers
1k views
Firefox XUL toolbar problem with javascript getElementById
I'm writing my first Firefox XUL toolbar, and am getting a strange behavior - in order to debug my code, I call the same js function from both the firefox toolbar and from a button on a very simple ...
2
votes
4answers
1k views
JavaScript: get value of dropdown
I have 3 HTML combo/drop down boxes. All of them have a distinct name and id.
On a particular event I want to get the value of all three of them.
Can any one give me a code snippet for that?
2
votes
2answers
2k views
document.getElementById(variable) Help!
I know it can be done but am having issues getting it to work. Basically I want to change the font color of a specific table cell based on a variable which changes daily, in effect highlighting the ...
2
votes
1answer
3k views
AJAX document.getElementById().innerHTML problem with IE?
Before someone said that I did not read I may say that I read almost everything linked with my question. But I couldn't find my answer.
So, I have a simple AJAX script that loads my external file ...
2
votes
4answers
258 views
JavaScript prototyping tutorial
I have a JS script with tons of functions, on big on is this:
function id(i) {
if(document.getElementById)
return document.getElementById(i);
return;
}
It just saves me many bytes ...
2
votes
3answers
424 views
getElementById for elements that are not yet in the DOM
As far as I know document.getElementById('myId') will only look for HTML elements that are already in the document. Let's say I've created a new element via JS, but that I haven't appended it yet to ...
1
vote
3answers
53 views
javascript document.getElementById().value works only with numbers not with strings
I have an AJAX based application that updates a text field in a form depending on user input. The text field is defined as follows:
<%= form.text_field :queue, {:class => "queue_class", :id ...
1
vote
2answers
56 views
Change Display property of collection of divs breaks Chrome + Non-linear growth in speed
Let's say I have a large number (> 1000) of DIVs on a page. Each has an id in the format of 'div' + [0-n]
If I then iterate through them and call:
document.getElementById('div'+i).style.display = ...
1
vote
0answers
34 views
Re-Finding an Html Element on a Page (Over and over and over and over…)
I am visiting example.com, and programmatically finding certain HTML Elements that I want to "track" -- i.e., I revisit the page regularly to see if the elements' text changes. The million dollar ...