The getelementsbytagname tag has no wiki summary.
4
votes
1answer
134 views
Why DomDocument getElementsByTagName give back an half NodeList?
I generate some non-standard-tag HTML with DomDocument and the result is this:
/* Input HTML
<div id="toobar_top">
<widget id="flag_holder"></widget>
<widget ...
3
votes
5answers
230 views
How do I get all h1,h2,h3 etc elements in javascript?
I want to write something like this in javascript:
var all_headings = document.getElementsByTagName("h1,h2,h3,h4,h5,h6");
all_headings would then be a list of all elements that are h1 or h2 or ...
3
votes
3answers
95 views
Why can't I add an event to each element in a collection that refers to Itself rather than the last element in the “for(){}” statement
On Window's load, every DD element inside Quote_App should have an onCLick event appended that triggers the function Lorem, however, Lorem returns the nodeName and Id of the last element in the For ...
2
votes
4answers
96 views
2D array with getElementsByTagName?
I am trying to access table cells in javascript using the getElementsByTagName method as shown below. Ultimately I want to compare each cell in the array to another value, and be able to change the ...
2
votes
1answer
125 views
Python - ElementTree Library
I've used before the miniDom library from Python. But in effbot.org elementtree library i'm missing a function:
getElementsByTagName('bar')
"getElementsByTagName finds all children of a given name, ...
2
votes
1answer
125 views
getElementsByTagName doesn't work
I have next simple part of code:
String test = "<?xml version="1.0" encoding="UTF-8"?><TT_NET_Result><GUID>9145b1d3-4aa3-4797-b65f-9f5e00be1a30</GUID></TT_NET_Result>"
...
2
votes
2answers
1k views
How to insertBefore() element in body tag?
I am trying to use insertBefore in js like this:
var p = document.createElement("p");
p.innerHTML = "test1";
document.body.insertBefore(p, null);
var p = document.createElement("p");
p.innerHTML = ...
2
votes
5answers
182 views
Reading an XML in C#
I'm using System.Xml to read a xml file in C#.
First I open the file (locally)... and use foreach to get the values, like this:
XmlNodeList titles = xmlDoc.GetElementsByTagName("title");
foreach ...
2
votes
3answers
203 views
Javascript for…in statement gives error when looping through array
I just tried the for...in statement in Javascript.
This gives no error:
var images = document.getElementsByTagName('img');
for(x in images){
document.write(images[x]) + " ");
}
However, this ...
2
votes
4answers
1k views
change <a> target to “_blank” depending on href
I'm trying to sort through the links on my page and make some of them open into a new window, depending on their URL. This is the code I have. It doesn't seem to be working. Can you see why?
...
1
vote
0answers
60 views
How to compare elements with the value of [ ]
I'm trying to get the counts of <tr> tag from which contained in <th>
for example there's these tags inside a table :
<th><tr></tr></th>
<th></th>
...
1
vote
1answer
37 views
Delete Xml data using php
How can I delete specific elements on xml using php
my.xml
<usr>
<uid trk= "1234">
<deleteThis>
<mychild>here</mychild>
...
1
vote
3answers
39 views
How do I dynamically access elements of a particular Div tag?
This is my JavaScript's onMouseOver event handler for Div tags. (It works fine, in at least Chrome & IE):
function changeCallout(sender, e) {
document.getElementById(sender.id).className = ...
1
vote
1answer
108 views
Getting attribute values in VBA
I need to make a VBA file that will read a webpage and return the value of the SRC attribute of the IMG tag. I wasn't able to make the last step work. Can you guys help me?
<html>
<body>
...
1
vote
3answers
62 views
Testing all element nodes in the DOM for attribute existence
I'm trying to find if any of the tags inside a page contain a js event attribute, such as onload, onunload, onfocus etc, ...
To do so I have an array of events to check for (I think I have them all):
...
1
vote
1answer
72 views
getElementsByTagName title is coming back with DOMNodeList Object
Our script uses dom to parse all the a tags from a document then loops through child nodes and extracts information which works fine here's how the code starts
@$dom->loadHTML($str);
...
1
vote
2answers
134 views
How to insert metatag without using jquery append?
I used the following jquery to insert a metatag into a html document.
<script type="text/javascript">
if(screen.width>=320 && screen.width<=767){
$('head').append('<meta ...
1
vote
2answers
76 views
DOM GetElementsByTagName Problem
I am just starting out learning JavaScript and I have just reach the DOM section of my course.
I have a page with 10 tags on it and I have created the following JavaScript to tell me how many I ...
1
vote
1answer
188 views
change style of <texarea> using getElementsByTagName textAlign from center to left
I have a script to change the text alignment for the textarea with the id textbox1 below:
// <![CDATA[
function alignFix() {
document.getElementById("textbox1").style.textAlign="left";
}
...
1
vote
0answers
58 views
XML node getelementsbytagname duplicating information
This php function reads an xml file, looks for a node and copies it to a node. If the node has only one element, the code duplicates that element and writes it twice in the node. I am wondering ...
1
vote
1answer
159 views
Javascript for loop not working properly?
I'm having an issue with a function I've written to "clean" up, see the code below and I'll explain how it works underneath.
clean: function (e) {
var
els = null,
i = 0;
...
1
vote
2answers
502 views
JavaScript getElementsByTagName() Undefined, IE Failure, AJAX XML file
I've been writing this code to dynamically load photo links from an XML document retrieved via AJAX. I have a global varibale xDoc that stores the response XML, and that I use in other functions so ...
1
vote
2answers
99 views
Changing content using innerHTML with a non-standard element in Internet Explorer
I have the non-standard element
<testele></testele>
In every browser except IE, this bit of JavaScript will successfully change the content of the above element
...
1
vote
3answers
278 views
get tagname in xml using php
Here is my xml:
<news_item>
<title>TITLE</title>
<content>COTENT.</content>
<date>DATE</date>
<news_item>
I want to get the names of ...
1
vote
1answer
641 views
getElementsByTagName().length returns zero
I am trying to do a simple thing such as:
var elements = document.getElementsByTagName("input");
console.log(elements);
console.log(elements.length);
The console.log(elements) shows the NodeList ...
1
vote
1answer
99 views
problem with javascript with JSP
Hey all i am trying to use javascript with my jsp file as under:
JSP File:
<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8"
...
1
vote
1answer
386 views
get the document html elements in firefox addon
i'm creating a firefox extension and i want to get the html page elements
using java script but the document.getElementsByTagName('*') always give me
an xul objects array
how can i get the html ...
1
vote
5answers
257 views
Recommended method to locate the current script?
I am writing a script that needs to add DOM elements to the page, at the place where the script is located (widget-like approach).
What is the best way to do this?
Here are the techniques I am ...
1
vote
0answers
438 views
GetElementsByTagName which is not case sensitive?
i'm using GetElementsByTagName to extract an element from an xml.
GetElementsByTagName is case sensitive - it throws an exception if the node name is 'PARAMS' instead of 'Params'.
i dont want that , ...
1
vote
1answer
224 views
Insert created element at start of html tag using PHP DOM
I'm trying to insert an HTML <base> tag immediately after the opening <head> tag of a page using dom. I've tried using appendChild which just inserts it before the </head> which is ...
1
vote
1answer
604 views
Javascript getElementsByTagName broken firefox?
I'm getting the weirdest issues with Javascript in Firefox today.
I'm trying to manipulate some table rows, but .getElementsByTagName("tr"); is pulling back junk.
dynamicTable.tableBody = ...
1
vote
2answers
4k views
“Null” is null or not an object error in IE javascript
The following code executes fine in Firefox and Chrome, but gives an error:
'null' is null or not an object
when executed in Internet Explorer.
if (xmlhttp.responseXML != null)
{
var ...
1
vote
2answers
642 views
SelectNodes and GetElementsByTagName
what are main differences between SelectNodes and GetElementsByTagName.
0
votes
1answer
45 views
getElementsByTagName issue
I have page with many doubleclick scripts
I have js code inserted at the body top (via s.src=('parts_async_dev.js')):
var innerHTML = ...
0
votes
2answers
42 views
Avoiding circularity when testing elements in lxml
I have this problem, I am processing some tables using lxml- the original source files are in mhtml format, they are excel files. I am needing to find the rows that contain the header elements 'th' ...
0
votes
0answers
40 views
Windows Phone 7 WebBrowser Invoke Click
I currently have the code below to invoke a click on an button on a webpage that's loaded inside a webbrowser on my form. The user of the application can click a button on my form & it will invoke ...
0
votes
4answers
40 views
Accessing table cell data within list items with javascript
I'm creating a list dynamically and I need to be able to retrieve values from the table cells. The structure is:
<ul id="tester">
...
0
votes
2answers
34 views
Get XML Element By Index Rather than Tag
I'm creating a video library and have an XML document split up by video category such as:
<video>
<comedy>
<url>bla</url>
<title>blabla</title>
...
0
votes
3answers
48 views
Get Child Nodes By Tag Name in DOM
I know that in DOM, the Document object has the method getElementsByTagName().
Why is this operation not defined on any particular Node? Suppose I have a Node object, and I want to find a particular ...
0
votes
3answers
28 views
Access XML data via javascript
How can I get the value of my xml data using a javascript. Im accessing my xml file on my domain, and view it on the client side.
my.xml
<usr>
<uid trk="1234">
...
0
votes
1answer
44 views
Android: getElementsByTagName equivalent?
Is it possible to search the hierarchy of View and get Views of particular type?
Equivalently to getElementsByTagName in JS
defined like this:
public ArrayList<T> getElementsByTagName(View v, ...
0
votes
2answers
27 views
If I know there is only gonna be one element with that name (XML(PHP DOM)), how can I select it?
I am trying to add some data received from a form to an XML file which already exists. I am using DOMDocument in PHP for adding the data to the file...
While I am somewhat successful in adding the ...
0
votes
1answer
37 views
While parsing xml, getAttribute gets some of the items and not others
Here is a sample of the XML:
<markers><marker name="Faulkner State Community College" lat="30.853801" lng="-87.776692" type="PS" number="279" address="CFOT, CPCT" /></markers>
The ...
0
votes
2answers
121 views
need some advice on using getElementsByTagName
Could anyone please explain to me in some details about getElementsByTagName and specifically how to properly iterate through the node list returned by getElementsByTagName.
Here is my simple script ...
0
votes
6answers
56 views
Please assist me with this simple script
I am new to JavaScript and would like to ask for some help with my simple script.
What I am trying to do is to retrieve and display the values of all list item elements in the unordered list with the ...
0
votes
2answers
107 views
Problem with getElementsByTagName in IE 8
I have problem this script dont working in IE 8 in Firefox is everything OK.
<html>
<style type="text/css">
lip{ position:absolute; }
</style>
<body>
...
0
votes
0answers
126 views
PHP DOMDocument always yields an empty object
I am trying to load a simple HTML string, (which regardless of HTML-tidy) will not allow DOMDocument access.
Here is the instantiation
$doc = new DOMDocument(/*'1.0', 'utf-8'*/);
...
0
votes
2answers
110 views
How to get childnode value & change value
How can I use JavaScript (no JQuery) to traverse through a bunch of DIVs that has a common class, then check the value within the <span> tag, base on the value, change the href value to ...
0
votes
1answer
51 views
XML loop collecting too many element in array
Hey guys I'm having trouble looping through some XML. Im trying to capture the elements and use them as js variables. My XML is.
<box>
<thing>
<id>5</id>
...
0
votes
2answers
89 views
Why does getElementsByTagName only grab every other element here?
With this code using DomDocument:
<?php
$html = '<pre>one</pre><pre>two</pre><pre>three</pre><pre>four</pre>';
$doc = new DomDocument();
...