Tagged Questions
The getelementsbyname tag has no wiki summary.
4
votes
1answer
154 views
getElementsByName() not working?
I have a Javascript function which should update a hidden input field in my form with a number that increments every time the function is called.
It worked originally with getElementById() however ...
2
votes
1answer
61 views
Javascript: setAttribute() v.s. element.attribute = value to set “name” attribute
So I'm learning to manipulate the DOM and I noticed one interesting thing:
Let's say I want to set the name attribute of an element by using the "." dot notation:
element.name = "someName";
...
2
votes
4answers
252 views
Why is my Javascript validation not working?
<script type='text/javascript'>
function formValidator(){
// Make quick references to our fields
var username = document.getElementByName('username');
var password = ...
2
votes
2answers
162 views
Best Practice: Accessing radio button group
Looking for the best, standards compliant, cross browser compatible, forwards compatible way to access a group of radio buttons in the DOM (this is closely related to my other most recent post...), ...
2
votes
2answers
3k views
jQuery and JSON: getting an element by name
I have the following JSON:
var json = {
"system" : {
"world" : {
"actions" : {
"hello" : {
"src" : "hello world/hello ...
2
votes
4answers
365 views
local copy of document.getElementsByTagName
Why doesn't the following code work?
var f = document.getElementsByTagName;
var x = f('div');
I get "TypeError: Illegal invocation" in Chrome, "TypeError: Type error" in Safari. I don't get an ...
1
vote
1answer
175 views
Javascript to increase/decrease font size (external css)
I managed to pull together a script that will increase the font sizes of parts of a web page using buttons or links. It works in Moz/Chrome, but sticks on IE, tho theoretically it shouldn't have a ...
1
vote
5answers
244 views
How to get value of the checked radio
I am trying to get the value of the checked radio button with the following code:
<html>
<head>
<script type="text/javascript" >
window.onload = initAll;
function ...
1
vote
4answers
739 views
javascript loop only applying to every other element
i have the following javascript below after i finish an ajax query
all of my images have name="pic"
<script type="text/javascript">
function done() {
var e = ...
0
votes
2answers
44 views
JavaScript change div color with link
This seems really simple but Im brand new to JavaScript. I have a link on my page. When you click this link 2 things happen. 1) Using html the page jumps to the location of the referenced anchor tag ...
0
votes
0answers
110 views
How to set a input field to a value of a hidden input, if it is not null?
I have an array of hidden inputs in my form which store values of another input field so that if validation fails and the form is reloaded I can preserve those values and prevent the user from having ...
0
votes
4answers
364 views
Can't select value of GetElementByName with custom jQuery form dropdown validation
I'm using the jQuery Validation plugin and trying to validate two time fields. I want to make sure that if "All" is selected for one field that it is true for the other and and end time is larger than ...
0
votes
0answers
33 views
how to make facebook believe i pressed a button but i didnt, i just visted the link by retrieving it from the html sourc code
Like many ppl my gf is playing on facebook and she loves it but has to many gifts. so i began creating an autoaccepter for her in VB2010 Express. this is what is have so far.
load facebook request ...
0
votes
2answers
426 views
how to access checkboxes and their values with getElementsByName
Suppose I have the following section of a form:
<td>
<p>
<input type="checkbox" name="faddon" onchange="iaddon()" value="89.00" /><br />
<input type="checkbox" ...
0
votes
2answers
605 views
Javascript: Show/Hide multiple elements by name
I need to show/hide multiple elements with the same name when another element is clicked, like
<span name="showhide" value="one" id="button">Click to Hide One</span>
<span ...
0
votes
3answers
61 views
What is the most effective way to create a reference to this HTML element using plain JavaScript?
If I have the following HTML:
<div id="container">
<iframe></iframe>
</div>
What is the most effective way (mainly in terms of performance) to create a reference to the ...