Advertisement
C_Volume2 Controls/ Forms/ Graphics/ Menus #81071

Check All checkboxes

To check all check boxes on the web page

AI

Yapay Zeka Özeti: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Kaynak Kod
original-source
function gCheckAll(chk)
	{
	for (var i=0;i < document.forms[0].elements.length;i++)
		{
			var e = document.forms[0].elements[i];
			if (e.type == "checkbox")
			{
				e.checked = chk.checked
			}
		}
	}
Upload
Orijinal Yorumlar (3)
Wayback Machine'den kurtarıldı