getElementByID is an essential method commonly used in JavaScript in the browser to retrieve a particular element node in a HTML or XML document by its ID.

learn more… | top users | synonyms

-3
votes
3answers
31 views

How can i get elements by class instead of “GetElementById”? [duplicate]

So, this is the code: <a id="link" href="https://url.com/">URL:</a> <input id="value"/> <script type="text/javascript"> var link= document.getElementById('link'); var ...
0
votes
1answer
10 views

RightJS: getElementById vs $('element_id')

I am learning javascript and using RightJS. What is the difference between the following? var thing = $('thing1') and var thing = document.getElementById('thing1')
-1
votes
3answers
27 views

Get value from select list in JS

I know that this might be very simple question and I tried to find solutions in the web but I can't figure it... I have the following C# / ASPX code: SelectArea += "<select name=\"Area\" ...
0
votes
1answer
43 views

how to reach into iframe, do jquery [duplicate]

I would like to know how to have my parent page reach into an iframe and set the innerhtml (using jquery .html()) to a variable that I will supply. Here is what i have thought up so far: var ...
0
votes
1answer
17 views

Finding child element from iFrame via getElementById or other technique?

I have an iframe on my page, and need to get a child element from it whose ID I have. I'd like to do something like this: document.getElementById('iframeID').getElementById('child element ID') I'm ...
1
vote
1answer
55 views

Loop through multiple divs using VBA

I am trying to extract information from a HTML page using Vb script. This is the HTML page from which I am trying to extract the information. <div id="profile-education"> <div ...
0
votes
1answer
23 views

javascript class not working when written to div using getElementById

I have been using a datepicker js class known as tcal. After you link to the class on your server, you can call it with one line of code. in header <link rel="stylesheet" type="text/css" ...
0
votes
3answers
38 views

Javascript - Get Select(Value) to evaluate

There are 10 different pins that I need the status for. <select> <option value="on" id="p1StatusOn" name="pin1Status">on</option> <option value="off" id="p1StatusOff" ...
0
votes
1answer
32 views

Excel Macro to prefill online form using IE?

I am in need of assistance. I am trying to write a macro that would take the value in column A and place it on an online form in an input element with no ID but the name ("OldUrl"). Then the macro ...
0
votes
0answers
27 views

Problems SCRIPT5007 IE8 [closed]

I have to create a site in which I placed an image which, if we click above, throws(launches) a video. Under Firefox, Chromium, IE9, the video dashes with no problem at all but not under IE8. Under ...
0
votes
3answers
51 views

Pass Text to JavaScript with document.getElementById

I am trying to pass text to JavaScript via document.getElementById. Specifically, I am trying to pass the value of the ID (set to "Jason_Example_12" in the example below). I can pass values that are ...
2
votes
2answers
25 views

Uncaught TypeError: Cannot read property 'style' of null [closed]

var n1 = document.getElementById("n1").style["background-color"]; Uncaught TypeError: Cannot read property 'style' of null so I try to change a table cell's background color but I get that. Not ...
-2
votes
2answers
30 views

Javascript within a php include. GetElementByID looks for div in parent document not the included document

I have a PHP file that has a section of the page while the rest uses an include to show the rest of the page. In the included php document I have some javascript that uses getElementById to find the ...
0
votes
1answer
13 views

How to call getElementById() on XSLT output?

Using PHP, I have transformed an XML document using XSLTProcessor::transformToDoc() into another XML document (of type DOMDocument.) I want to call getElementById() on this resulting DOMDocument, but ...
-1
votes
0answers
26 views

Anybody able to fix this? if .. then (VBScript) [duplicate]

Basically I'm making a VBScript which alerts me if an item is found (certain items) on a website Id=114613970 Do WScript.Sleep 1100 frame.Visible = True frame.Navigate ...
-1
votes
2answers
47 views

Why won't this … if .Document.getElementById(“”) = “” then … work?

Here's basically what I'm trying to do, I'm just trying to make a alert if a user on that site creates an item/image it alerts me with a message. So I'm grabbing the elements but seems like it's not ...
0
votes
3answers
45 views

Get value from iput HTML / JS

I have the following html code: <form name="Register" action="Register.aspx" method="post" runat="server" style="margin-top: 15px;" onsubmit="return validateProfile(FormName='Register');" > ...
0
votes
2answers
52 views

Change innerHTML from an external php file

I've got a script in an HTML file that runs a php file every 30 seconds. The php file is intended to change a div's innerHTML. I don't seem to find the way to replace it. I was using load() but there ...
0
votes
1answer
32 views

Javascript: Using regEx to change more than one character or group of characters at a time

I know how to code fairly simple regular expressions, my question is about changing more than one character or characters at a time - Not more than one instance of a character or characters, but more ...
0
votes
2answers
39 views

How can I click on a button without an ID

I'm using VB.Net and i'm using WebBrowser1.Document.GetElementById("submit").InvokeMember("click") But I can't seem to find the actual ID. I'm trying to find the sign in button id from the site: ...
0
votes
0answers
98 views

How to create changing div's using classes instead of div's

I'm building up bbcode for phpbb3 forum that toggles text areas from one div to another. The problem is, if somebody post second post with this method, div's in first post will only change, but not in ...
0
votes
0answers
16 views

How to point script at photo-booth element?

I have a JavaScript element called photobooth, its name is self explanatory and and example of it can be found here: [PhotoBooth][1] I'm trying to point a face detection script at the photobooth ...
-6
votes
1answer
58 views

Get value of getElementByid() [closed]

I need to use the function document.getElementById(id) and I need to get the value of the element. I tried to use document.getElementById(id).getValue document.getElementById(id).innerHTML ...
2
votes
1answer
82 views

Change CSS Class on click using Javascript?

I am trying to change a CSS Class on click. Here is the fiddle: http://jsfiddle.net/Margate/bdAD3/ <div id="MainContainer"> <div id="MainImageContainerLand"> <img id="Main" ...
0
votes
3answers
50 views

Javascript - how to call function correctly

I don't really understand how to call a Javascript function properly on document ready. My goal is to resize a div depending on the height of browser window, and I took this code from another answer ...
0
votes
1answer
85 views

How do I use the html element id in C#

I am trying to use c# and SQL to count the number of times a link has been clicked on my webpage. So far I have html a link of this format: `<a href="home.aspx" id="topNav-home" runat="server" ...
1
vote
3answers
93 views

getElementById is not working in opera 12.15

I am using javascript on client-side in my app, I need to get the element based on the id, class and tagname, I am using following code for getting element using id. HTML: ...
0
votes
1answer
44 views

Append text to document.getElementById().value;

I have a function: function calcRoute() { var start = document.getElementById('start').value; ... } And a form: <form onsubmit="calcRoute(); return false"> <input type="text" ...
0
votes
2answers
46 views

Change more than 1 CSS value on click using Javascript?

have a very basic page that I am working on that contains thumbnail images and a main image. When the thumbnail images are clicked I am using document.getElementById to change the main image. Easy to ...
0
votes
1answer
131 views

jQuery Flip Effect / getElementById

I've been using a flip effect which I want to use for multiple widgets, but I've been struggling with the following problem: I've used the same base HTML for the different widgets. So when I want to ...
0
votes
1answer
64 views

PHP Equivalent to this Javascript [closed]

I have a HTML template with DIVs holding schema.org markup. The DIV content is populated via PHP but some DIVs are left blank/empty when we lack the data to put in them. Currently, we can hide the DIV ...
0
votes
2answers
50 views

getElementById() and input form

I have a function calcRoute() { var start = document.getElementById('start').value; } And then a <select id="start" onchange="calcRoute();"> <option value="somevalue">Dropdown ...
1
vote
1answer
45 views

PHP DomDocument - getElementByID(Partial Match) How?

Is there a way to grab all elements with an id that partially match. For example, if I want to grab all HTML elements on the webpage with an id attribute that starts with msg_ but could be anything ...
0
votes
1answer
40 views

javascript function executing on second click

I have a need to collapse/expand the width of a div (rather that hide/show), and for some reason this code that I wrote only seems to start working with the second click. If it put an alert in to ...
0
votes
1answer
60 views

php xml dom getElementById and DOMXpath query fails getting element

I have some problems making a function to replace question and answer elements in my XML file. I did alot of research learning php dom but I'm running stuck at making this function. The problem is ...
0
votes
1answer
28 views

can getElementById be called on something else than document?

I'm wondering and did not find anything on it. I'm running some encapsulated javascript, so I can't/don't want to access document. So instead of: document.getElementById("foo"); I want to call ...
4
votes
2answers
51 views

function doesn`t start after onclick

Hi I tried to make a quiz for my friends. I set up function in my editor and it worked, when I move it to server, after button is hit nothing happens. My html code is: <div ...
0
votes
0answers
48 views

Acces a component inside a form, how to do?

Well, have been coding a bit this morning until I've come to realise that forms, in some weird fashion, do not like someboy accessing their insides... Let me describe my problem to you : I've made a ...
2
votes
1answer
179 views

Getting Dynamic id (from AngularJS) in getElementByID

I have a clickable drop-down List as following: <ul class="dropdown"> <li ng-repeat="item in items" ng-controller="ListCtrl"> <a href="#" ...
0
votes
0answers
46 views

Unable to access GetElementById for datepicker and hidden fields (.Net WebBrowser Control)

I am doing a web scrapping tool, which will exact data from site automatically based on given start and end date. These dates are actually a picker (But not sure about either it’s Js picker or ...
0
votes
2answers
67 views

getElementById returns allways null if i search for new created Element

i want to duplicate one element and then assign to new id and names. my aim is later i want find that element again. here is an example: <div id="contDiv"> <div style="float:left"> ...
0
votes
4answers
134 views

Javascript function changes behavior when passing element ID vs. hard coding it

I have the following Javascript that on a single mouse click in a table cell with id="freq-table" populates consecutive <input> form fields with id="searchTerm(x)" with the cell's value. It's ...
0
votes
2answers
36 views

New to php loadHTML error 500

I'm totally new to php. Running this code (that I found in SO) I receive Error 500 when the 4th line is executed: $html = $data->saveHTML(); What is wrong with this code? Do I have to declare ...
0
votes
2answers
76 views

javascript: get contents of textarea, textContent vs. innerHTM vs. innerText

I am having trouble getting the contents of a textarea with js. I feel like I've done this many times before without problems but something is throwing it off or I have a mental block. html ...
0
votes
2answers
81 views

Cannot use document.getElementById() in global scope

When I try this on the global scope: document.getElementById("p1").innerHTML ="Howdy mate"; It does not work and firebug reports the error: TypeError: document.getElementById is null But the ...
0
votes
2answers
104 views

Using “var X = document.getElementById(”X“);” to collect var from form

Great site, superb contributors, I thank you in advance. (rant)>72 hours, 50% less hair, googling ".ajax easy examples" = There are no easy, working examples on the web - :-)(/rant) I'm collecting ...
-1
votes
4answers
98 views

how do I apply jquery effects to generated HTML that is inserted with getElementById? [closed]

this doesnt seem to work: <script> window.onload = function() { var div = '<div id="accordion">'; div += '<div>'; div += ...
0
votes
2answers
63 views

Find an element by id within a dynamically added control

I have an asp page in which I add dynamically a control I created (several times). In that control I have textbox for password and username and a revert button. I use this javascript code in that ...
0
votes
2answers
67 views

Using getElementByID.innerHTML from within a switch statements case?

Alright so first off, total Newbie here, so my questions answer might be extreemley simple because i have missed some thing critical. I am trying to have a switch statement, switch out the innerHTML ...
-1
votes
6answers
94 views

Javascript get element by ID and his inside value

This is what i have inside javascript function xmlhttpPost(strURL,formname,responsediv,responsemsg) { var xmlHttpReq = false; var self = this; // Xhr per Mozilla/Safari/Ie7 if ...

1 2 3 4 5 13