Search results for 'Deselect'. 1 post(s) found.
2007/08/31 08:24
Select And Deselect All Checkboxes By Javascript
2007/08/31 08:24 in HTML, Javascript

You can Select and Deselect all Checkboxes by clicking two hyper links(Select All and Deselect All).This type of functionality will be needed some times in HTML table.
<!--if you have two hyperlinks like below-->
<A href="javascript:checkUncheck(true);">Select all</A>
<A href="javascript:checkUncheck(false);">Deselect all</A>
<!--then use this javascript to Select all or to Deselect all-->
<script language="javascript">
<!--
function checkUncheck(yes)
{
for (i = 0; i < document.forms[0].elements.length; i++)
{
document.forms[0].elements[i].checked = yes;
}
}
-->
</script>
<A href="javascript:checkUncheck(true);">Select all</A>
<A href="javascript:checkUncheck(false);">Deselect all</A>
<!--then use this javascript to Select all or to Deselect all-->
<script language="javascript">
<!--
function checkUncheck(yes)
{
for (i = 0; i < document.forms[0].elements.length; i++)
{
document.forms[0].elements[i].checked = yes;
}
}
-->
</script>
Another posts included in "HTML, Javascript"
| Confirm The Link Clicked (0) | 2007/09/03 |
| Enlarge Image (0) | 2007/09/03 |
| Dual Scroller (0) | 2007/09/03 |
| Javascript Mouse Event Handler Example (0) | 2007/08/31 |
| Getting WebSearchers On Your Site (0) | 2007/08/31 |
| Hiding HTML on the browser (0) | 2007/08/31 |
| How to get date time in Javascript ? (0) | 2007/08/31 |
| Javascript based Alarm Clock (0) | 2007/08/31 |
Trackback : Cannot send a trackbact to this post.
-
Subject different money making ideas
2010/01/28 23:42
moneyideas
-
Subject different money making ideas
2010/01/29 08:03
moneyideas
-
Subject different money making ideas
2010/01/31 16:45
moneyideas
Prev

Rss Feed