The html-dom tag has no wiki summary.
4
votes
5answers
372 views
How can I write HTML code only if JS is enabled? [closed]
Possible Duplicate:
Is there a html opposite to noscript
<noscript> makes it easy to have HTML code as a fallback if JS is disabled... but what if I want to have HTML code which is ...
4
votes
4answers
2k views
How do I disable all input buttons without using jQuery?
How would I do this without jQuery?
$('input[type=submit]').attr('disabled',true);
It doesn't have to be cross-browser compatible; a solution that only works in Firefox is OK.
3
votes
3answers
585 views
php: Parse string from html
I have opend a html file with
file_get_contents('http://www.example.com/file.html')
and want to parse the line "ParseThis":
<h1 class=\"header\">ParseThis<\/h1>
As you can see the ...
2
votes
1answer
46 views
Given an offset in an extracted combined text string, how to determine containing node and offset?
Given the following HTML (just an example):
<div id="container"><span>This is <strong>SOME</strong> great example, <span style="color: ...
2
votes
5answers
398 views
2
votes
5answers
465 views
JavaScript, loop all selects?
Well im new to javascript but why does this not work, all i want to do is to get a list of all selects on the page.
var elements = document.getElementsByTagName("select");
alert("there are " + ...
1
vote
1answer
41 views
rowIndex is returning -1
I am using greasemonkey script and have updating the table using following code. I have attached the image of the table. But when I click on the delete , rowIndex returns -1 for all the rows. I am not ...
1
vote
2answers
156 views
javascript load xml from document with ie9
what is the best way to change(without jquery) these html/javascript to work with ie9,
<html>
<body>
<div id="xmls">
<xml id="myXml">
...
1
vote
1answer
29 views
open source software for building html files on the fly
I need to build html files on the fly by reading from multiple database tables. Basically the html consists of three tables, each of which has a different look. The database values will be put in ...
1
vote
2answers
73 views
Modify Character or Word after typing it JavaScript
Lets say I am typing the word "hello" into a textarea. How would I, after I had typed hello, select that word I had just typed, and modify it. For example, after I typed the word hello, without ...
1
vote
1answer
220 views
Chrome execCommand returns error
How do I use the execCommand() in Chrome? Here is the code I have right now
It is being used to insert a special character when hitting the tab button
function editAble(supr){
...
1
vote
1answer
62 views
HTML Parsing: Clicking element with “onclick” handler does not update WebBrowser ReadyState
I am looking for a way to CLICK an HTML element on a page programmatically. If the page is opened in a Browser and we need to click on a <A> element then instead of clicking we can retrieve the ...
1
vote
2answers
126 views
jQuery - results of DOM manipulation can't be assigned to a variable?
Using jQuery, I change the value of an input text field through some process. After the process is done, I need to capture this change and apply it to another process. My problem is that I can't seem ...
1
vote
3answers
1k views
Get list item index in HTML ul list using Javascript
I have the following HTML page:
<html>
<head>
<script type="text/javascript" src="JavaScript/Menu.js"></script>
</head>
<body>
...
1
vote
0answers
96 views
Adobe Air with HTML DOM
How do I use Adobe Air with HTML DOM?
"<input type="text" class="inputtext" name="myemail" id="email" tabindex="1">"
I tried
document.getElementById('email').value
= "111@domain.com";
...
1
vote
1answer
374 views
HTML file: add annotations through IHTMLDocument
I need to add "annotations" to existing HTML documents - best in the form of string property values I can read & write by name.
Apparently (to me), meta elements in the header seem to be the ...
0
votes
0answers
50 views
Simple HTML DOM image and title not working
i have a problem with this simple html dom i cant get the full title fetched from the website and i am trying to make another for loop which can still filter that images inside that link. In which i ...
0
votes
1answer
46 views
Get only text from multiple pages with JSoup
I have a set of 1000 pages(links) that I get by putting a query to Google. I am using JSoup. I want to get rid of images, links, menus, videos, etc. and take only the main article from every page.
...
0
votes
1answer
55 views
Objectify Javascript - How To Run A Javascript Function multiple Times
I have written a simple Javascript function (curteousy of codecall.net) that creates a count down timer.
It works fine when I run it, but I want to have more than one timer on the page.
When I ...
0
votes
2answers
129 views
how to process textarea multiple line input if user hit “enter/return” key
my coding:
...
<textarea name="TextArea1" id="TextArea" style="height ; width" ></textarea>
...
<script type="text/javascript">
var txt_element = ...
0
votes
1answer
73 views
HTML DOM w3schools clarification
just reading the W3schools HTML DOM tutorial. There's a paragraph that makes no sense to me. The original page is here
The bit that doesn't make sense to me is:
A common error in DOM processing ...
0
votes
3answers
61 views
HTML DOM: do carriage returns/tabs translate to spaces?
Please take a look at this image:
On the top left, notice how HelloWorld does not have a space between them, while Foo Bar does. The right side shows the mark up; there is no space after Foo or ...
0
votes
3answers
215 views
jQuery change page's title when user in a different tab
I have live chat on my page. I want to change the title (with something moving like in omegle.com) when a new message is received and the user is not in the same tab as the live chat. When the user ...
0
votes
5answers
287 views
get all child element of a form in J.S
how can i get all child element(like radio,checkbox,select,text,...) within a form and make them blank using javascript. My form has many other elements like table,div etc. but i dont want to changes ...
0
votes
2answers
38 views
Is there a document.onmodification event or similar?
Is there an event in JavaScript that fires whenever an element is added/removed/modified?
Not very much detail, but it's a simple question.
0
votes
0answers
47 views
Create a classList substitute for the browsers that haven't implemented it yet
There's a question that looks like this one here:
Create my own classList object when the browser does not implement it itself
The problem is that the answer works in some browsers but does not work ...
0
votes
0answers
56 views
Convert XML element to Option Tag
Is there a direct was to convert an Element Object to an HTMLOption Object?
Let's suppose I have this XML:
<?xml version='1.0'?>
<options>
<option ...
0
votes
2answers
69 views
Convert Element to Option
Is there a way to convert an Element Object to an HTMLOption object?
I have one code that looks like this:
var request = getXMLHttpRequest();
request.onreadystatechange =
...
0
votes
2answers
184 views
How can I scroll to a specified line in a rich text box using java script
I have a div with many textual lines in it. The div is height restricted and hence I have a scroll. Is there a way in java script to scroll to a specified line.
Had it been in html page I can always ...
0
votes
4answers
541 views
I want to crop,rotate, skew an image using jquery with a frame above it ? Is it possible using Jquery?
I need some help urgently, I am developing an application where a user uploads an image and zooms,pans to set the image into the frame.
I am able to pan and zoom, and have set the face on the ...
0
votes
1answer
681 views
using javascript's .insertBefore to insert item as last child
I so miss jQuery. I'm working on a project where I need to get my hands dirty with good 'ol plain Javascript again.
I have this scenario:
parent
child1
child2
child3
Via javascript, I ...
0
votes
2answers
106 views
PHP How to get only the first image after a getimagesize judgement
I use simple_html_dom and url_to_absolute get all the image from one site. but after a getimagesize judgement, how to echo only the first image? not the all? Thanks.
<?php
set_time_limit(0);
...
0
votes
2answers
189 views
Problem setting the value or name attribute on a dynamically created radio button
I am trying to dynamically generate a group of radio button, however when I add a radiobutton with jQuery the name attribute is not set properly.
var radioButtonInput = ...
0
votes
4answers
3k views
How to iterate through ul list using Javascript?
I have the following HTML page (page is simplified here as it is a sample of the real one):
<html>
<head>
<script type="text/javascript" ...
0
votes
3answers
72 views
Need guidance for HTML-dom designing
I have started with the project where I am suppose to use client side scripting @ extreme.
this is the scenario :
There are two drop-down lists in my form on my web-page ..one is COUNTRY and other is ...
-1
votes
1answer
48 views
Extract relevant portion from a html file
I need to extract relevant portion from a html file. If I search for an item instead of the whole data present in the html page, I need only the definition of the search item. For this I need to parse ...
-2
votes
0answers
31 views
PHP DOM accessing the object [closed]
How to access "THE DATA" section? What is wrong?
It isn't enough?
$data = $xpath->query('//table[@class="l10BWHITE"]/tbody/tr/td[@class="L10YELLOW"]');
I've fetched many datas before. But in ...
-2
votes
1answer
191 views
Javascript IMG Insert [closed]
im_bar = document.createElement("img");
im_bar.id = UPDATE_STATUS_RESPONSE[0]+"_SPLIT";
im_bar.style.display = "block";
im_bar.style.margin = "0px auto 0px auto";
im_bar.src = ...