Page MenuHomePhorge

client.js
No OneTemporary

Authored By
Unknown
Size
755 B
Referenced Files
None
Subscribers
None

client.js

function toggleblock(id, link)
{
var block = document.getElementById(id);
return false;
}
function addhostfield()
{
var container = document.getElementById('defaulthostlist');
var row = document.createElement('div');
var input = document.createElement('input');
var link = document.createElement('a');
input.name = '_default_host[]';
input.size = '30';
link.href = '#';
link.onclick = function() { removehostfield(this.parentNode); return false };
link.className = 'removelink';
link.innerHTML = 'remove';
row.appendChild(input);
row.appendChild(link);
container.appendChild(row);
}
function removehostfield(row)
{
var container = document.getElementById('defaulthostlist');
container.removeChild(row);
}

File Metadata

Mime Type
text/plain
Expires
Sat, Apr 4, 2:37 AM (4 d, 23 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
93/41/2d94e45871e9f83e51c16755bde8
Default Alt Text
client.js (755 B)

Event Timeline