This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.

7 lines
245 B
JavaScript
Raw Normal View History

2010-11-30 09:41:08 +11:00
// Supporting Javascript for HOST_TLD
function domainUpdate(domain,tld,type) {
document.getElementById('domain_name').value = domain;
document.getElementById('domain_tld').value = tld;
document.getElementById('domain_option').value = type;
}