473,378 Members | 1,384 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

removeNode problem

Hi,
I am using removeNode() to remove a table (tbody) from the document
like this:

the_table = document.getElementById(the_table_id);
the_table.removeNode(true);

However when I access the length property like this:

the_div = document.getElementById(my_div_id);
the_div.getElementsByTagName("tbody").length

....I seem to get a value that does not reflect the fact that the tbody
node has been removed. This is causing me big problems!

I was wondering if anyone could help?

Oct 29 '05 #1
5 6833


Hi,
I am using removeNode() to remove a table (tbody) from the document
like this:
the_table = document.getElementById(the_table_id);
the_table.removeNode(true);
However when I access the length property like this:
the_div = document.getElementById(my_div_id);
the_div.getElementsByTagName("tbody").length
....I seem to get a value that does not reflect the fact that the tbody
node has been removed. This is causing me big problems!
I was wondering if anyone could help?

Oct 29 '05 #2
st***********@blueyonder.co.uk wrote:
Hi,
I am using removeNode() to remove a table (tbody) from the document
A table element is a different thing from a tbody element. A table
must have one or more tbody elements. If a tbody element is not in
the source HTML, then browsers will insert them where they think they
should go.
like this:

the_table = document.getElementById(the_table_id);
the_table.removeNode(true);
If the id is on the tbody, then better to name your variable to
reflect that:

the_tBody = document.getElementById(the_table_id);
the_tBody.parentNode.removeChild(the_tBody);


However when I access the length property like this:

the_div = document.getElementById(my_div_id);
the_div.getElementsByTagName("tbody").length

...I seem to get a value that does not reflect the fact that the tbody
node has been removed. This is causing me big problems!

I was wondering if anyone could help?


Try the test code below. If that doesn't help, post a small example
that shows your issue.

<div id="xx">
<table border="1">
<tbody id="tBodyA">
<tr><td>A cell</td></tr>
</tbody>
</table>
</div>
<input type="button" value="Delete tbody" onclick="
var theDiv = document.getElementById('xx');
alert('tbodies before: '
+ theDiv.getElementsByTagName('tbody').length)
var theBody = document.getElementById('tBodyA');
theBody.parentNode.removeChild(theBody);
alert('tbodies after: '
+ theDiv.getElementsByTagName('tbody').length)
">

--
Rob
Oct 30 '05 #3
Hi Rob,
Thanks for the reply.

Following your advice, I have attempted to use the following:

var the_table = document.getElementById(the_table_id);
the_table.parentNode.removeChild(the_table);

Although im getting an "object required" error. The getElementById
works OK, and the tbody with specified ID is on the page.

Oct 30 '05 #4
Sorry, It would probally help to illustrate what I'm attempting to do,
if I worded it like this:

var the_table_body = document.getElementById(the_tbody_id);
the_table_body.parentNode.removeChild(the_table_bo dy);

Oct 30 '05 #5
Steve Macleod wrote:
Sorry, It would probably help to illustrate what I'm attempting to do,
if I worded it like this:

var the_table_body = document.getElementById(the_tbody_id);
If you insert:

alert(the_table_body.nodeName);

and see an alert that says 'TBODY' then you are getting a tbody node.
If that works, then I can see no reason why the following line shouldn't
work.

Did the test script I gave you work OK?
the_table_body.parentNode.removeChild(the_table_bo dy);


--
Rob
Oct 30 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Bruce Davis | last post by:
I'm having a problem on windows (both 2000 and XP) with a multi-threaded tkinter gui application. The problem appears to be a deadlock condition when a child thread pops up a Pmw dialog window in...
11
by: Kostatus | last post by:
I have a virtual function in a base class, which is then overwritten by a function of the same name in a publically derived class. When I call the function using a pointer to the derived class...
0
by: Refky Wahib | last post by:
Hi I need Technical Support I finished a Great project using .Net and SQL Server and .Net Mobile Control My Business case is to implement this Program to accept about 1 Million concurrent...
117
by: Peter Olcott | last post by:
www.halting-problem.com
3
by: Tim Mackey | last post by:
hi, i have a javascript function to highlight google search keywords in the page. it works well on IE and mozilla browsers. for the page OnLoad, i call the Highlight() method, and that...
28
by: Jon Davis | last post by:
If I have a class with a virtual method, and a child class that overrides the virtual method, and then I create an instance of the child class AS A base class... BaseClass bc = new ChildClass();...
6
by: Ammar | last post by:
Dear All, I'm facing a small problem. I have a portal web site, that contains articles, for each article, the end user can send a comment about the article. The problem is: I the comment length...
16
by: Dany | last post by:
Our web service was working fine until we installed .net Framework 1.1 service pack 1. Uninstalling SP1 is not an option because our largest customer says service packs marked as "critical" by...
2
by: Mike Collins | last post by:
I cannot get the correct drop down list value from a drop down I have on my web form. I get the initial value that was loaded in the list. It was asked by someone else what the autopostback was...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.