Development| HTML| JavaScript| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
JavaScript deleteCaption method 
 

As in the previous section of JavaScript method example you have seen that we can add the caption to our table at execution time with the use of createCaption() method

 

JavaScript deleteCaption method

                         

As in the previous section of JavaScript method example you have seen that we can add the caption to our table at execution time with the use of createCaption() method and in similar manner we can delete the caption of the table by calling the method deleteCaption().

Syntax:

 tableObject.deleteCaption();

Description of code :

In this code of example we have created a table and a button. In this table we have already added a caption with the value "Information Example". When the user clicks on the "Delete Caption" button it calls the JavaScript function deleteCaption(), which we have defined in our script tag of the HTML code. It takes the table object from the method getElementById().

deleteCaptionExample.html

<html>
<head>
<script type="text/javascript">
function deleteCaption()
{
document.getElementById('table').deleteCaption();
}
</script>
</head>
<body>

<p>&nbsp;</p>
<p align="center">&nbsp;</p>
<div style="background: #cf2255; width:'100%';" align="center">
<font color="#ffffcc" size="12pt"><b>Delete Caption Example</b></font></div>
<center>

<table id="table" border="1" cellspacing="0" cellpadding="3" >
<caption style="color:red">Information Example</caption>
<tr>
<td align="center" bgcolor="#808080">
<p align="center">Name</p>
</td>
<td align="center">
<p align="center">Sandeep</p>
</td>
</tr>
<tr>
<td align="center" bgcolor="#808080">
<p align="center">Qualification</p>
</td>
<td align="center">
<p align="center">MCA</p>
</td>
</tr>
</table>
</center>
<p align="center">
<br />
<input type="button" onclick="deleteCaption(); this.disabled=true;"
value="Delete caption">

</body>
</html>

Output:

Click on the "Delete caption" button.

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.