The following basic script works fine in firefox by not in IE. Can anyone
spot the problem? In IE I can only delete the first line but not the lines
created by javascript. Also, look at the ...
Hi Experts:
I have a table where the first row is written in html. See: "Row 1 HTML" in the code section below.
When I add a new row to the table, I use javascript and DOM elements. Se...
I am experimenting with adding and removing rows from the end of a table dynamically. It is actually more than experimenting it is a project to add to my resume and need to get it done so I ca...
I have a dynamic table with tr ids set as below as an example.
<Table name = "tblGrid">
<tr id=1>
<Td></td>
</tr>
<tr id=2>
<Td></td>
</tr>
<tr id=3>
<Td></td>
</tr>
<tr...
I have an SVG + Javascript animation that I need to know where the user clicked (so that my animation starts to move that direction). In regular HTML I can use the function you'll see below. ...
Hi all,
I need a some explanation as to what is going in my code and where to get reference documents to what I'm actually doing!!!
I am using excel VBA to drive a very simple HTML web ...
Given the following XML:
<Coverage id="Base">
<PlanName>Whole Life</PlanName>
<Purpose tc="1">None</Purpose>
<ShortName>WL100</ShortName>
<Ma...
I receive this error:
childNodes.1.childNodes.1.childNodes is null or not an object
for the attached code snippit in IE 6... the code works fine in IE 7 and FireFox 2... but not in IE 6 if...
Hi,
in a JavaScript function I need to get the width of a div container to calculate the width of an other one.
It works fine at all but when I startmy project I ever get an error message ...
i am trying to find out a div's x location with ie
i use this code in mozilla and it works
document.getElementById('pic').x
but in ie, it is undefined. i've been trying to use differe...
I've got a bit of a confusing one here regarding writing to the DOM on the fly. I've included a stripped down version of my page in the code section below to highlight the problem that can be ...
hi in this web page i mount in a ajax aplication
www.dizifilmseyret.com
you can see it in the sidebar. right hand side of the page. when first combobox is selected the second combobox is...
Hello,
I am developing a C# asp.net application in which i am filling a ul object dynamically in the code behind:
foreach (string groupName in dict.Keys)
{
navlist.InnerHtml += "<li ...
Hi all,
From a js file I want to add the following to the head tag:
<style type="text/css">
@import "http://www.myweb.com/css/style.css";
</style>
I'm using the code below, and it wo...
I need to be able to remove a button from a page dynamically given the following tag specification.
<div align="left>
<button class="primary" onclick="javascript:do_action(this, 5);">Approve...
I am using a custom property instead of a global variable in a javascript:
document.myProperty = 'true';
At a later stage I like to delete/remove this property so I can use the existence...
Hi Experts,
When I load a webpage into a webrowser control the value Europe is the default for the page. I would like to reset this default to 'Other' so that the page reloads with Other as...
Hi, I'm adding images dynamicaly to the DOM tree using JavaScript. The problem is that IE6 sends multiple requests for each image when I add more than one image to the DOM tree (if I add only ...
I am building a dynamic table where I can add and edit new rows. The idea is to have the table rows in memory which will all be saved when a Save button is pressed. I have managed to add a new...