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

0
votes
1answer
10 views

Random from a list first trial

first question for me here! I am trying to create a simple html random word selection from a list. This is where I am at, but there must be something very wrong.. any idea? Eventually I'd love to ...
-3
votes
1answer
23 views

i want get string from Input text field and compare to some string, if it�s true send to some url

i still have problem in my code. i want the Java get the string froom the input text field and compare to another string, it´s true, send to some url. i did this code, but it doesn´t work. <input ...
0
votes
4answers
41 views

How to set the value of an HTML input field with a javascript value

I know this has been asked a thousand times but nothing I've tried has worked so far. I'd really appreciate some input. Here's my situation, I have this code in javascript: <script> var url = ...
0
votes
1answer
35 views

Counting elements with Javascript

I am kind of a newbie, so I am not sure where to look for my mistake. I am want to count all rows of a certain table, but I need to have the number above/inside the table itself. However, I only get ...
0
votes
0answers
21 views

getelementbyid button click not working with __doPostBack

I'm trying to .click a button within a website frame from Excel VBA but not having much luck. I've been given some good help on addressing the frame issue in this post(getelementbyid via msexcel vba ...
0
votes
2answers
34 views

How To create a event on seperate page javascript

Hello I'm trying to figure out how to create a event on a separate page from my index page below. For instance when a click event occurs I want to append a new node on a separate page (artist.html) I ...
0
votes
3answers
54 views

Jquery get element ID from its value

Hey guys I have a problem in Jquery. I need to get the id of an element from its value. I have to find the ID of the element having maximum value. var M = Math.max($("#textbox1").val(), ...
0
votes
0answers
16 views

getElementById within form tag

I am trying to have an input box change to "th", "st", "nd" or "rd" depending on what number is entered in another box My HTML is <input id="hole_number" name="hole_number" maxlength="3" size="3" ...
0
votes
2answers
49 views

document.getElementById(“”).getElementsByTagName(“img”)[0].src = Not Working

I have these 3 lines of code in an external javascript file function init(){ document.getElementById("upcoming_event").getElementsByTagName("img")[0].src = "images/fastnet_2013_poster.jpg"; ...
0
votes
0answers
25 views

document.getElementByID(variable).style.display not working in IE

Code below works without error in every browswer except IE. Getting "Object Required" error. Any ideas would be much appreciated. ----JAVASCRIPT----- function toggle(btnID) { if ...
0
votes
2answers
17 views

Trying to add <script> tags to an embeddable code

I'm trying to add a script that adds an embeddable code to my website, and that code includes the script tag. However, as soon as I add the closing tag, the code stops rendering. Here's what I'm doing ...
1
vote
2answers
64 views

jQuery doesn't find by ID

I think Google Chrome console log is going to explain my problem best: >> $(".single.portfolio") [<article id=​"#js-single-item" class=​"post-883 portfolio type-portfolio status-publish ...
1
vote
2answers
45 views

JavaScript Object not changing image

I am working on a simple image gallery page that contains a main image that is swapped whenever a thumbnail image is clicked. I know that the way I am doing it would be far easier in JQuery but I am ...
4
votes
3answers
54 views

getElementById selected can't select more than one option

I have a function in javascript that should allow me to select more than one option, but it only selects the first one. Javascript: function index(){ var ...
1
vote
1answer
60 views

getelementbyid via msexcel vba object required 424

I have been struggling to get the getelementbyid (or name) code working. What I want to do is submit login details without using sendkeys. Probably is just a matter of not understanding the website. I ...
1
vote
1answer
44 views

Stopping web audio drum loop with getElementById and addEventListener

I am trying to make a metronome that slowly ramps up the speed, allowing me do to excersises without having to stop playing to turn my handheld metronome up. I'm using a loop to play each measure and ...
0
votes
1answer
73 views

getElementById value not working

I am trying to pass a value from javascript to a field on a form. However, it doesn't seem to work. The html code is: <html> <head> <title>Insert title here</title> ...
0
votes
2answers
28 views

array outside a function is allocated space, but a variable outside a function is not allocated in javascript why?

this is my javascript code : var strp = [0,19,26,33,40,46,49,57,61,65,67,73,76]; var i = document.getElementById("length").value; function calculator(){ document.write("the total cost is " + ...
0
votes
1answer
85 views

jquery html() changes not visible after calling another function

A function used to insert bbcodes into a textfield breaks a jquery click function that makes use of the html() method. If the jq click function gets called after the tag function, changes made by ...
0
votes
1answer
32 views

Javascript: Create two Elements and change their class by onclick on them

I want to click on a div and create with javascript two elements then i want to click to one of the new elements and change the class of the other. Most of it works until the point i want to change ...
0
votes
3answers
28 views

Change an image using the value typed into a textbox

New to Javascript and would appreciate some help with the following, be gentle with me. I would like to change an image depending on the value typed into a textbox. My script is <asp:TextBox ...
3
votes
2answers
47 views

addEventListener() without getElementById reference success?

Check out this fiddle (partial code snippet below): http://jsfiddle.net/QJJb8/ <button id='mybutton'>MY BUTTON</button> mybutton.addEventListener('click', mybuttonClick, false); ...
-3
votes
3answers
45 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
12 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
45 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
49 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
36 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
107 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
38 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
49 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
77 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
52 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
65 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
182 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
49 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
14 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
2answers
81 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
54 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
88 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
69 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
46 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
101 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
18 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
72 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
117 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
58 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
138 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
115 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
160 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
49 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 ...

1 2 3 4 5 13