Development| HTML| JavaScript| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
JavaScript deleteTHead method 
 

As we can create and delete Table footer in the html page with the use of JavaScript method similarly we can delete and create Table header with the use of JavaScript method deleteTHead() of the table object.

 

JavaScript deleteTHead method

                         

As we can create and delete Table footer in the html page with the use of JavaScript method similarly we can delete and create Table header with the use of JavaScript method deleteTHead() of the table object. In this example of JavaScript methods we have deleted the table header by getting the table object. Syntax of deleteTHead() is as follows:

Syntax:

 TableObject.deleteTHead();

Description of code:

As we have described in our example of deleting table footer that we must have table object for deleting the table footer therefore  here also we have taken the table object with the method document.getElementById() and then we have called the method deleteTHead() for deleting the table header.

Here is the full example html code for deleteTHeadExample.html as follows:

 <html>
<body>
<script language="JavaScript">
function deleteTableHeader() {
document.getElementById('table').deleteTHead();
}
</script>
<p align="center">&nbsp;</p>
<div style="background: #cf2255; width:'100%';" align="center">
  <font color="#ffffcc" size="12pt">
    <b>Deleting Table Header</b>
  </font>
</div>
  <center>
  <table id="table" border="1" width="400">
	<thead>
	  <th colspan="2">Information table Header </th>
	</thead>
        <tr>
	    <td>Name</td>
            <td>Deepak Kumar</td>
        </tr>
	<tr>
	    <td>Designation</td>
            <td>IT Manager</td>
        </tr>
  </table>
 </center>
	<p>
	 <center>
		 <input type="button" value="Delete header" 
           onclick="deleteTableHeader(); this.disabled='true';">
	</center>
	</p>
</body>
</html>

Output:

Click on the button "Delete header" to delete header of the table.

Download Source Code

                         

» View all related tutorials
Related Tags: java javascript c attributes script reference object method sed remove ip attribute node move nat to ref e it alter

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.